nginx不支持pathinfo 导致thinkphp出错解决办法

复制代码
location / { 
 if (!-e $request_filename) { 
 rewrite ^(.*)$ /index.php?s=$1 last; 
 break; 
 } 
 }
复制代码

然后项目配置下url模式改为2

'URL_MODEL'=>2,
复制代码
location ~ .php {    #去掉$
      root          H:/PHPServer/WWW;
      fastcgi_pass   127.0.0.1:9000;
      fastcgi_index  index.php;
      fastcgi_split_path_info ^(.+.php)(.*)$;     #增加这一句
      fastcgi_param PATH_INFO $fastcgi_path_info;    #增加这一句
      fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
      include        fastcgi_params;
 }
复制代码
原文地址:https://www.cnblogs.com/liangml/p/5959631.html