www.startbbstest.com
server {
listen 80;
server_name www.startbbstest.com;
location / {
root /home/wzw/workstation/www/startbbstest.com;
index index.php index.htm index.html;
autoindex on;
}
location = /50x.html {
root /home/wzw/workstation/www/startbbstest.com;
}
location ~ .php.*$ {
root /home/wzw/workstation/www/startbbstest.com;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?$1 last;
rewrite “^/(.*)$” /index.php last;
break;
}
}
}
本文来自博客园,作者:breezecn,转载请注明原文链接:https://www.cnblogs.com/breezecn/p/19778317
联系作者: https://aboutbreeze.pages.dev/
浙公网安备 33010602011771号