您好,登錄后才能下訂單哦!
這篇文章主要介紹PHP中重定向網(wǎng)頁(yè)跳轉(zhuǎn)頁(yè)面的方法,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
PHP中重定向網(wǎng)頁(yè)跳轉(zhuǎn)頁(yè)面的方法:1、利用【header()】函數(shù)進(jìn)行重定向;2、利用HTML頭部中的meta標(biāo)簽;3、利用javascript進(jìn)行跳轉(zhuǎn)。
PHP中重定向網(wǎng)頁(yè)跳轉(zhuǎn)頁(yè)面的方法:
hhw:用第一種方法可以將:http://127.0.0.1/tp5 簡(jiǎn)化為http://127.0.0.1
,即將www目錄下的index.php文件寫(xiě)入第一種中的php代碼:
<?php header('content-type:text/html;charset=uft-8'); header('location:tp5/index.php'); ?>
或直接:
<?php header('content-type:text/html;charset=uft-8'); header('location:tp5/public/index.php'); ?>
第一種:利用header()函數(shù)進(jìn)行重定向,這也是我用的較多的。(注意!locationhe和“:”之間不能有空格,否則無(wú)作用!)
<?php header('content-type:text/html;charset=uft-8); //重定向頁(yè)面 header('location:index.php'); ?>
第二種:利用HTML 頭部中的 meta標(biāo)簽,定義http-equiv=refresh 和content=”跳轉(zhuǎn)花費(fèi)的時(shí)間(秒為單位);url=跳轉(zhuǎn)地址”
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> //跳轉(zhuǎn)頁(yè)面,跳轉(zhuǎn)時(shí)間: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)頁(yè)面,跳轉(zhuǎn)時(shí)間: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)頁(yè)面 echo <script>window.location.href='$url';</script>; ?>
以上是PHP中重定向網(wǎng)頁(yè)跳轉(zhuǎn)頁(yè)面的方法的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。