首页 服务器正文

关于ThinkPHP在Nginx服务器下出错的解决方法

mydiannao 服务器 09-12 3165 0

Aoki进来看。

这是一个ningx设置的问题,和TP无关。TP默认使用PATH_INFO来做CURD,而nginx默认设置不处理PATH_INFO,查看nginx可以看到出错日志:
2010/01/09 22:05:36 [error] 13988#9380: *3 CreateFile() "E:companyhomelabsphpthinkphpservernginx-0.8.31/....src/Examples/Form/index.php/Index/insert" failed (3: The system cannot find the path specified), client: 127.0.0.1, server: localhost, request: "POST /Examples/Form/index.php/Index/insert HTTP/1.1", host: "localhost", referrer: "http://localhost/Examples/Form/"
说明nginx把PATH_INFO当成了目录文件的一部份,所以找不到该文件。

解决方法一:修改TP设置,不使用PATH_INFO

解决方法二:修改nginx设置,支持PATH_INFO

本人使用CoreServer集成包,就以此为例,修改nginx.conf和fastcgi-params


       location ~ .php$ {
修改为
       location ~ .php/?.*$ {


         fastcgi_param   SCRIPT_FILENAME   $document_root2$fastcgi_script_name;
修改为
         set $fastcgi_script_name2 $fastcgi_script_name;
         if ($fastcgi_script_name ~ "^(.+?.php)(/.+)$") {
            set $fastcgi_script_name2 $1;
            set $path_info $2;
         }
         fastcgi_param   PATH_INFO $path_info;
         fastcgi_param   SCRIPT_FILENAME   $document_root2$fastcgi_script_name2;



fastcgi_param   SCRIPT_NAME        $fastcgi_script_name;
修改为
fastcgi_param   SCRIPT_NAME        $fastcgi_script_name2;

本站公告

【企业、公司、工作室、出租屋、家庭】
远程解决:网络异常,路由器配置,打印机设置,驱动安装,局域网文件共享,监控调试,电脑故障等电脑周边问题解决,欢迎咨询!
微信:1633694989