PHP重定向三种方法:
:
(1).如果要用此方法,在用之前不能有HTML输出。(***)
$url="http://winty.ik8.com";
header("Location: $url");
(2).
echo "<script>window.location =\"test.php\";</script>";
或
将window.location换成self.location
(3).
(1).如果要用此方法,在用之前不能有HTML输出。(***)
$url="http://winty.ik8.com";
header("Location: $url");
(2).
echo "<script>window.location =\"test.php\";</script>";
或
将window.location换成self.location
(3).
echo "<META HTTP-EQUIV=\"Refresh\" CONTENT=\"0; URL=index.php\">";
本文转自wintys 51CTO博客,原文链接:http://blog.51cto.com/wintys/121711