php下的重定向:
header("Location: mask.php")
确实适用于 IE 9、google chrome、firefox,但不适用于 IE 8。
我怎样才能解决这个问题?
PS:header("Location: http://......")
没有帮助。
php下的重定向:
header("Location: mask.php")
确实适用于 IE 9、google chrome、firefox,但不适用于 IE 8。
我怎样才能解决这个问题?
PS:header("Location: http://......")
没有帮助。
你最后缺少;
你需要exit
的脚本,所以不再执行脚本。
<?php
header("Location: mask.php");
exit; // with die at the end
?>
测试IE
制作一个重定向某个地方的示例页面并在NetRenderer上进行测试
我刚遇到这个问题,这篇文章仍然出现在谷歌中。对我有用的解决方案是在 URL 中包含 www。
例子:
header("Location: http://www.example.com/mask.php");
exit();
干杯。
后添加die();
。
喜欢:
header("Location: mask.php");
die();