php如何實現頁面路由轉發

2020-10-07 18:00:44

php實現頁面路由轉發的方法:首先設定nginx伺服器,在【.htaccess】中寫上nginx的語法;然後開啟根目錄的【index.php】,編寫檔案路由即可。

php實現頁面路由轉發的方法:

1、設定nginx伺服器

nginx伺服器不會自動讀取.htaccess,也不支援.htaccess語法,這裡需要做一個投機取巧的方法:在.htaccess中寫上nginx的語法,同時把該檔案引入到nginx的設定中。這樣就達到了和apache同樣的目的。編輯.htaccess檔案,輸入以下內容並儲存

if (!-e $request_filename){
    rewrite ^(.*)$ /index.php;
}
location ~ /.ht {
    deny  all;
}

【解釋】nginx匹配失敗的uri全都轉給index.php,同時禁止存取.htaccess檔案

最重要的一步:在nginx設定中,在server{}內加入一句話:

include E:/demo/.htaccess;

【解釋】將該檔案原封不動的引入到nginx設定中。注意使用絕對路徑!

2、編寫index.php路由

開啟根目錄的index.php,輸入以下內容

<?php
    //路由
    $uri = $_SERVER['REQUEST_URI']; //獲取uri,例如 http://www.abc.com/study,其uri="/study"
    switch($uri){
        case "/":      include "template/home.php";  break;
        case "/study": include "template/study.php"; break;
        case "/play":  include "template/play.php";  break;
    }
編寫/template/下的網頁檔案
/template/下存放的網頁檔案,隨便編輯點html用於測試。例如 home.php
<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>這裡是home</title>
</head>
<body>
    <h1>你好,這裡是home頁面</h1>
</body>
</html>

效果

在瀏覽器存取http://localhost:8000 可以存取到/template/home.php

在瀏覽器存取http://localhost:8000/study 可以存取到/template/study.php

在瀏覽器存取http://localhost:8000/play 可以存取到/template/play.php

相關免費學習推薦:(視訊)

以上就是php如何實現頁面路由轉發的詳細內容,更多請關注TW511.COM其它相關文章!