当前位置: > Linux服务器 > nginx >

让nginx 支持PATH_INFO

时间:2014-11-26 02:11来源:linux.it.net.cn 作者:IT
很多PHP框架默认使用PHP的PATH_INFO 来进行URL重写
当用Nginx作为http服务器的时候,就出现问题了,愿意是Nginx为定义PATH_INFO这个变量,我们想要使用PHP框架的PATH_INFO重写时候,必须定义这个变量

代码比较简单
Java代码  
  1. location ~ \.php($|/) {   
  2.     root       /www/test;   
  3.   
  4.     set $script     $uri;   
  5.     set $path_info  "";   
  6.   
  7.     if ($uri ~ "^(.+?\.php)(/.*)$") {   
  8.         set $script     $1;   
  9.         set $path_info  $2;   
  10.     }   
  11.   
  12.     fastcgi_index   index.php;   
  13.     fastcgi_param   SCRIPT_FILENAME $document_root$fastcgi_script_name;   
  14.     fastcgi_param   PATH_INFO       $path_info;   
  15.     fastcgi_pass    unix:/tmp/php-fpm.sock;   
  16.     include fastcgi_params;   
  17.     }  


这样PHP框架就可以使用PATH_INFO 重写了
(责任编辑:IT)
------分隔线----------------------------
栏目列表
推荐内容