header("Location: index.php");
header("Location: /");
header("Location: /",True,301);
...
在IE上没有任何作用,为什么&我该如何解决这个问题?
答案 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");