PHP中重定向網頁跳轉頁面的方法:1.利用【header()】函數進行重定向;2、利用HTML頭部中的meta標籤;3、利用javascript進行跳轉。
【相關學習推薦:#php圖文教學##】
PHP中重定向網頁跳轉頁面的方法:
#hhw:用第一種方法可以將:http://127.0.0.1/tp5簡化為http://127.0.0.1,即將www目錄下的index.php檔案寫入第一種中的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'); ?>
<?php header('content-type:text/html;charset=uft-8); //重定向页面 header('location:index.php'); ?>
<!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('content-type:text/html;charset=utf-8'); $url='index.php'; ?> <!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>
<?php header('content-type:text/html;charset=utf-8'); $url='index.php'; //立即跳转至目标页面 echo <script>window.location.href='$url';</script>; ?>
##################################相關學習推薦:###php程式設計###(影片)##########
以上是PHP中如何重新導向網頁跳轉頁面的詳細內容。更多資訊請關注PHP中文網其他相關文章!