当前位置:主页 > 软件编程 > PHP代码 >

PHP重定向的3种方式

时间:2020-12-01 11:37:11 | 栏目:PHP代码 | 点击:

复制代码 代码如下:

//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">";

您可能感兴趣的文章:

相关文章