我学会了如何让Nginx返回503个客户错误页面,
但是我找不到如何做到以下几点:
示例配置文件:
location / {
root www;
index index.PHP;
try_files /503.html =503;
}
error_page 503 /503.html;
location = /503.html {
root www;
}
您可以看到,根据上面的代码,如果在我的根目录中找到一个名为503.html的页面,站点将返回此页面给用户.
但似乎尽管上面的代码工作,当有人只是访问我的网站打字
它不会陷阱请求像:
> http://www.example.com/profile.php
使用我的代码,用户仍然可以看到配置文件页面或除index.PHP之外的任何其他页面.
问题:
最佳答案
已更新:将“if -f”更改为“try_files”.
原文链接:https://www.f2er.com/nginx/434627.html尝试这个:
server {
listen 80;
server_name mysite.com;
root /var/www/mysite.com/;
location / {
try_files /maintenance.html $uri $uri/ @maintenance;
# When maintenance ends,just mv maintenance.html from $root
... # the rest of your config goes here
}
location @maintenance {
return 503;
}
}
更多信息:
https://serverfault.com/questions/18994/nginx-best-practices