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">"; 
原文地址:https://www.cnblogs.com/langtao/p/2948008.html