这真的很奇怪..我在文件中有以下重定向:
header('Location: http://google.com');
它不起作用。页面加载并且用户没有被重定向。但是,如果我在该行下方添加 die() 语句,如下所示:
header('Location: http://google.com');
die('what the heck is going on here?');
然后重定向神奇地开始工作!
我完全不知道为什么会发生这种情况,而且我不知道如何调试它。
任何人都可以给我任何建议吗?