您好,登錄后才能下訂單哦!
php重定向后跳轉(zhuǎn)不了怎么辦?這個問題可能是我們?nèi)粘W(xué)習(xí)或工作經(jīng)常見到的。希望通過這個問題能讓你收獲頗深。下面是小編給大家?guī)淼膮⒖純?nèi)容,讓我們一起來看看吧!
第一種:利用header()函數(shù)進(jìn)行重定向,這也是我用的較多的。(注意!location和“:”之間不能有空格,否則無作用!)
<?php header('content-type:text/html;charset=uft-8); //重定向頁面 header('location:index.php'); ?>
第二種:利用HTML 頭部中的 meta標(biāo)簽,定義http-equiv=refresh 和content=”跳轉(zhuǎn)花費的時間(秒為單位);url=跳轉(zhuǎn)地址”
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> //跳轉(zhuǎn)頁面,跳轉(zhuǎn)時間:3秒鐘,目標(biāo)地址:index.php <meta http-equiv="refresh" content="3;url=index.php"> <title>skip...</title> </head>
或者
<?php header('content-type:text/html;charset=utf-8'); $url='index.php'; ?> <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> //跳轉(zhuǎn)頁面,跳轉(zhuǎn)時間:2秒鐘,目標(biāo)地址:index.php <meta http-equiv="refresh" content="2;url=<?php echo $url; ?>"> <title>skip...</title> </head>
第三種:利用javascript進(jìn)行跳轉(zhuǎn)
<?php header('content-type:text/html;charset=utf-8'); $url='index.php'; //立即跳轉(zhuǎn)至目標(biāo)頁面 echo <script>window.location.href='$url';</script>; ?>
感謝各位的閱讀!看完上述內(nèi)容,你們對php重定向后跳轉(zhuǎn)不了怎么辦大概了解了嗎?希望文章內(nèi)容對大家有所幫助。如果想了解更多相關(guān)文章內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。