欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

PHP重定向的3种方式

程序员文章站 2023-09-08 11:48:05
复制代码 代码如下://1header("location: index.php"); //2echo '

复制代码 代码如下:

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