设置 nginx 支持 thinkPHP 的 pathinfo 模式

来源:互联网 发布:excel保护数据有效性 编辑:程序博客网 时间:2024/04/26 03:51

参见 http://down.chinaz.com/server/201108/934_1.htm

在 nginx 下面用 ThinkPHP 做开发,每次输入 类似 /test/tp/index.PHP/Index/index 的 URI , 提示没有找到该页

在网上搜了一下,原来 nginx 原来不支持 pathinfo 模式,需要自己配置

在配置文件的 server 块中,加入以下内容

[plain] view plain copy
  1. # ThinkPHP 的 pathinfo 支持 -------------- BEGIN  
  2. location /test/tp/ {  
  3.     index index.php;  
  4.     if (!-e $request_filename) {  
  5.         rewrite ^/test/tp/(.*)$ /test/tp/index.php/$1 last;  
  6.         break;  
  7.     }  
  8. }  
  9. location ~ .+\.php($|/) {  
  10.     set $script $uri;  
  11.     set $path_info "/";  
  12.     if ($uri ~ "^(.+\.php)(/.+)") {  
  13.         set $script     $1;  
  14.         set $path_info  $2;  
  15.     }  
  16.       
  17.     fastcgi_pass 127.0.0.1:9000;  
  18.     fastcgi_index index.php?IF_REWRITE=1;  
  19.     include fastcgi_params;  
  20.     fastcgi_param PATH_INFO $path_info;  
  21.     fastcgi_param SCRIPT_FILENAME $document_root/$script;  
  22.     fastcgi_param SCRIPT_NAME $script;  
  23. }  
  24. # ThinkPHP 的 pathinfo 支持 -------------- END  

其中 /test/tp/ 是我项目的路径

保存配置之后,重启 nginx ,配置成功

直接支持类似于 /Index.html 这样的伪静态模式


0 0
原创粉丝点击