PHP header location-redirect doesn#39;t work - why?(PHP 标头位置重定向不起作用 - 为什么?)
问题描述
这是我的文件.我想让它重定向,但没有任何反应.为了检查发生了什么,我在标题部分之前添加了一个 echo.
Here's my file. I want to make it redirect, but nothing happens. To check out what is going on, I added an echo before the header part.
它既不会抛出错误也不会重定向到 index.php.怎么了?我已经打开/关闭输出缓冲,但没有任何东西使它重定向.我能做什么?
It neither throws an error or redirect to index.php. What is wrong? I have turned output buffering on/off, but nothing makes it redirect. What can I do?
<?
error_reporting(E_ALL);
echo 'This is an error';
header("Location: login.php");
die();
?>
谢谢
推荐答案
我提醒自己,我在实际测试环境中安装了 xDebug,经过谷歌搜索后,我发现了这个站点:http://bugs.xdebug.org/view.php?id=532
I reminded myself that I had xDebug installed on the actual test environment and after googling it, I found this site: http://bugs.xdebug.org/view.php?id=532
因此,我将下载最新版本的 xDebug 并相应地为新文件更改 php.ini,一切都变得很完美.正在发送标头 - 重定向已完成并显示错误.
So I'll downloaded the last version of xDebug and changed the php.ini accordingly for the new file and everything works out like a charm. Headers are being sent - the redirecetion is done and errors are displayed.
感谢大家的帮助!
这篇关于PHP 标头位置重定向不起作用 - 为什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:PHP 标头位置重定向不起作用 - 为什么?
基础教程推荐
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- 使用 PDO 转义列名 2021-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- HTTP 与 FTP 上传 2021-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- PHP 守护进程/worker 环境 2022-01-01