【已记录】在面板上停止网站运行以后,还可以打开网站
站点开启时 为什么会自动添加location / {
try_files $uri /index.html;
}
的配置,这个配置与刷新页面404的配置
location / {
try_files $uri $uri/ @router;
index index.html;
}
location @router {
rewrite ^.*$ /index.html last;
}
发生冲突
删除
location / {
try_files $uri /index.html;
}
后 停止网站才正常,但是再次开启网站,又会自动添加
location / {
try_files $uri /index.html;
}
这个配置
希望官方优化
页:
[1]