歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux基礎 >> 關於Linux

nginx配置PATH_INFO模式

我們可以使用PATH_INFO來代替Rewrite來實現偽靜態頁面, 另外不少PHP框架也使用PATH_INFO來作為路由載體   在Apache中, 當不加配置的時候, 對於PHP腳本, Accept pathinfo是默認接受的   PATH_INFO是服務器狀態中的一個參數,通過$_SERVER['PATH_INFO']可以查看內容   apache下配置如下   RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*).html$ index.php/$1 [QSA,PT,L] 比如你訪問 http://127.0.0.1/pathinfo/index.html 但是nginx上有一些SERVER變量不支持比如,_server['http_x_forwarded_for'] 、$_SERVER['PATH_INFO']   這樣一來對於嚴重依賴PATH_INFO的框架,就很麻煩了   比如Thinkphp   if (!-e $request_filename) {    rewrite  ^(.*)$  /index.php?s=$1  last;    break; }   給出了這麼一種方案,這也只是折衷而已了   nginx中一般的配置為   location ~* \.php$ {            fastcgi_pass    unix:/dev/shm/php-fpm.socket;            fastcgi_index   index.php;            fastcgi_param  SCRIPT_FILENAME $document_root$fastcgi_script_name;            include        fastcgi.conf;            include        fastcgi_params;  }.   php本身有一個cgi.fix_pathinfo配置選項,不過由於安全問題已經棄用了   看了看網上的資料,nginx中有一個fastcgi_param配置文件用來配置fastcgi_param   f
astcgi_param  SCRIPT_FILENAME    $document_root$fastcgi_script_name;#腳本文件請求的路徑 
fastcgi_param  QUERY_STRING       $query_string; #請求的參數;如?app=123 
fastcgi_param  REQUEST_METHOD     $request_method; #請求的動作(GET,POST) 
fastcgi_param  CONTENT_TYPE       $content_type; #請求頭中的Content-Type字段 
fastcgi_param  CONTENT_LENGTH     $content_length; #請求頭中的Content-length字段。 
   
fastcgi_param  SCRIPT_NAME        $fastcgi_script_name; #腳本名稱  
fastcgi_param  REQUEST_URI        $request_uri; #請求的地址不帶參數 
fastcgi_param  DOCUMENT_URI       $document_uri; #與$uri相同。  
fastcgi_param  DOCUMENT_ROOT      $document_root; #網站的根目錄。在server配置中root指令中指定的值  
fastcgi_param  SERVER_PROTOCOL    $server_protocol; #請求使用的協議,通常是HTTP/1.0或HTTP/1.1。   
   
fastcgi_param  GATEWAY_INTERFACE  CGI/1.1;#cgi 版本 
fastcgi_param  SERVER_SOFTWARE    nginx/$nginx_version;#nginx 版本號,可修改、隱藏 
   
fastcgi_param  REMOTE_ADDR        $remote_addr; #客戶端IP 
fastcgi_param  REMOTE_PORT        $remote_port; #客戶端端口 
fastcgi_param  SERVER_ADDR        $server_addr; #服務器IP地址 
fastcgi_param  SERVER_PORT        $server_port; #服務器端口 
fastcgi_param  SERVER_NAME        $server_name; #服務器名,域名在server配置中指定的server_name 
   
#fastcgi_param  PATH_INFO           $path_info;#可自定義變量 
   
# PHP only, required if PHP was built with --enable-force-cgi-redirect 
#fastcgi_param  REDIRECT_STATUS    200; 

fastcgi_param PHP_VALUE "auto_prepend_file=/data/header.php";

 

看到沒有fastcgi_param上的參數都是$_SERVER變量的,另外還可以來配置php.ini   所有結合nginx自身的語法就有了   新版本的nginx也可以使用fastcgi_split_path_info指令來設置PATH_INFO,舊的方式不再推薦使用,在location段添加如下配置   location ~ ^.+.php {   (...)   fastcgi_split_path_info ^((?U).+.php)(/?.+)$;   fastcgi_param SCRIPT_FILENAME /path/to/php$fastcgi_script_name;   fastcgi_param PATH_INFO $fastcgi_path_info;   fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;   (...) }     對了,nginx+lua 也可以配置的
Copyright © Linux教程網 All Rights Reserved