當請求的路徑為
http://test.com/article?id=1
http://test.com/article/update?id=1
支援以上url模式,不需要設定傳遞PATH_INFO變數,也不需要設定偽靜態去除index.php
最簡單的nginx設定如下:
server { listen 80; server_name test.com; access_log /var/log/nginx/test.com.access.log main; root /home/test; index index.html index.htm index.php; location / { try_files $uri $uri/ /index.php?q=$uri&$args; } location ~ .php { fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } }
此設定有幾個重點要關注:
1.try_files必須設定在location塊中,這個可以用於除去index.php,如果不設定,則必須在路徑中加上/index.php/
2.location ~ .php
a. 這裡是否以$結尾,有時會被困擾,重點看清是否存在try_files,如果不存在try_files指令,那麼就一定不要以$結尾,這樣在路徑中使用帶/index.php/的模式還是可以存取的
b. 如果存在try_files指令,並且location ~ .php$ 這裡是以$結尾,那麼/index.php/在php的location中就匹配不到,但是try_files又把引數重寫到index.php?q=中了,因此這樣也是可以存取到。
此時$_SERVER變數中,經常被各大框架或者自寫程式用作路由處理使用的變數值如下:
$_SERVER["PHP_SELF"]=>"/index.php",沒有URL中的引數
$_SERVER["PATH_INFO"]=>,根本不存在,因為Nginx沒有傳遞這個變數
$_SERVER["REQUEST_URI"]=>"/article/update?id=1",這個是實現路由的關鍵,引數都存在
PHP中比較相容的處理是:
$uri=$_SERVER['REQUEST_URI']; $uri=str_replace("/index.php","",$uri); if(strpos($uri,"?")!==false){ $uri=substr($uri,0,strpos($uri,'?')); } $uri=trim($uri,'/'); var_dump($uri);//獲取到 article/update
推薦教學:PHP視訊教學
以上就是深度解析Nginx下的PHP框架路由實現的詳細內容,更多請關注TW511.COM其它相關文章!