php 重定向的最简单方法,有需要的朋友,可以参考下。
PHP重定向 <?php //method1 header("Location: index.php"); //method 2 echo '<scrīpt type="text/javascript"> window.location = "index.php"; </scrīpt>'; //method 3 echo "<META HTTP-EQUIV="Refresh" CONTENT="0; URL=index.php">"; ?> Salin selepas log masuk 有关php 重定向的内容,您还可以参考如下的文章: apache php 301重定向的实例分析 php 301重定向的实现方法 php实现301重定向的方法 有关php页面重定向的三种方法 |