TA的每日心情 | 擦汗 2018-6-6 11:33 |
---|
签到天数: 348 天 [LV.8]以坛为家I
|
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">";
复制代码 |
|