PHP重定向的3种方式_PHP
程序员文章站
2022-04-30 19:07:48
...
复制代码 代码如下:
//1
header("Location: index.php");
//1
header("Location: index.php");
//2
echo '
window.location = "index.php";
//3
echo "";