当前位置:Gxlcms > PHP教程 > PHP重定向的3种方式_PHP

PHP重定向的3种方式_PHP

时间:2021-07-01 10:21:17 帮助过:3人阅读

代码如下:
//1
header("Location: index.php");

//2
echo '
window.location = "index.php";
';

//3
echo "";

人气教程排行