nginx 404重定向页面

./nginx -t 检测nginx.conf文件是否正确
./nginx -c /xx/xx/xx/nginx.conf 指定对应的nginx.conf文件

nginx未匹配到路由,会默认跳转到 404页面,增加以下配置可以将404页面重定向到我们指定的 404.html

location / {
    proxy_intercept_errors on; //该参数必须配置
}

error_page 404 /404.html;
location = /404.html {
    root /zz/nginx
 } // /zz/nginx/404.html这个路径下404.html必须存在

你可能感兴趣的:(nginx 404重定向页面)