2
每個文件都被傳遞給「index.php」,但由於fastcgi,每個php文件都沒有正確重定向。任何解決方法?Nginx不重定向php文件
location/{
if ($request_filename ~* "index.php") {
break;
}
rewrite ^/(.*)$ /index.php?page=$1 last;
break;
}
location ~* \.php$ {
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME /usr/share/nginx/html$fastcgi_script_name;
fastcgi_pass 127.0.0.1:9000;
}
感謝