location = / {
root "/www/wwwroot/website";
index index.html;
}
location / {
index index.html index.htm index.php;
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=/$1 last;
break;
}
}
规则大概是这样。然后输入 http://domain/ 竟然匹配到了 location / (我有在 location / 中 return 507 发现的) 为什么会这样?谢谢
1
1156909789 OP https://haobook.readthedocs.io/zh_CN/latest/personal/ligang/nginx_cmd_index.html
nginx 中 index 影响,已解决 |