heimao 发表于 2017-2-14 22:50:38

PHP重定向的3种方式

php重定向的3种方式//1
header("Location: index.php");

//2
echo '<scrīpt type="text/javascript">
window.location = "index.php";
</scrīpt>';

//3
echo "<META HTTP-EQUIV="Refresh" CONTENT="0; URL=index.php">";
页: [1]
查看完整版本: PHP重定向的3种方式