php重定向後跳不了

王林
發布: 2023-04-07 12:08:01
原創
3454 人瀏覽過

php重定向後跳不了

PHP中重定向網頁跳轉頁面的方法有三種,以下為大家詳細介紹一下。

第一種:利用header()函數進行重定向,這也是我用的較多的。 (注意!location和「:」之間不能有空格,否則無作用!)

<?php
    header(&#39;content-type:text/html;charset=uft-8);
    //重定向页面
    header(&#39;location:index.php&#39;);
 ?>
登入後複製

第二種:利用HTML 頭部中的meta標籤,定義http-equiv= refresh 與content=」跳到花費的時間(秒為單位);url=跳到位址」

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    //跳转页面,跳转时间:3秒钟,目标地址:index.php
    <meta http-equiv="refresh" content="3;url=index.php">
    <title>skip...</title>
</head>
登入後複製


<?php
header(&#39;content-type:text/html;charset=utf-8&#39;);
$url=&#39;index.php&#39;;
 ?>
 <!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    //跳转页面,跳转时间:2秒钟,目标地址:index.php
    <meta http-equiv="refresh" content="2;url=<?php echo $url; ?>">
    <title>skip...</title>
</head>
登入後複製

第三種:利用javascript進行跳轉

<?php
header(&#39;content-type:text/html;charset=utf-8&#39;);
$url=&#39;index.php&#39;;
//立即跳转至目标页面
echo <script>window.location.href=&#39;$url&#39;;</script>;
?>
登入後複製

以上內容僅供參考!

推薦影片教學:PHP影片教學

以上是php重定向後跳不了的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板