PHP标题位置:对IE无效

时间:2016-01-12 08:58:47

标签: php header

header("Location: index.php");

header("Location: /");

header("Location: /",True,301); 

...

在IE上没有任何作用,为什么&我该如何解决这个问题?

3 个答案:

答案 0 :(得分:1)

始终在exit;之后使用header('location:url');

header("Location: http://example.com/index.php");
exit();

答案 1 :(得分:0)

试试这段代码:

ob_start();
header("Location: https://sitename.com/login.php");
exit();

答案 2 :(得分:0)

URL中传递完整的header

header("Location: https://yoursite.com/index.php");