Nginx上Thinkphp5 出現404問題
阿新 • • 發佈:2019-01-23
1.當我們訪問伺服器上的Thinkphp5.0框架的時候,出現訪問域名可以訪問,但是補全地址或則訪問其他地址就出現404錯誤,可能是我們Niginx不支援pathinfo訪問模式 ,所以修改nginx.conf檔案,修改一下兩項。
location / { if (!-e $request_filename) { rewrite ^(.*)$ /index.php?s=$1 last; break; } } location ~ \.php/?.* { fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; include fastcgi_params; include fastcgi.conf; set $real_script_name $fastcgi_script_name; if ($fastcgi_script_name ~ "^(.+?\.php)(/.+)$") { set $real_script_name $1; set $path_info $2; } fastcgi_param SCRIPT_FILENAME $document_root$real_script_name; fastcgi_param SCRIPT_NAME $real_script_name; fastcgi_param PATH_INFO $path_info; }