nginx.conf
中加入自定义的 404 页面:server {
server_name localhost;
listen 7000;
location / {
root /opt/nginx/xdr;
index index.html index.html;
# autoindex
autoindex on;
autoindex_exact_size on;
autoindex_localtime on;
client_max_body_size 100m;
}
·····
# 1.配置404页面
error_page 404 /404.html;
# 2.隐藏Nginx版本信息
server_tokens off;
}
404.html
存放的路径就在 /opt/nginx/xdr
下server_tokens off
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。