Nginx自定义404页面

Posted Oops!

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Nginx自定义404页面相关的知识,希望对你有一定的参考价值。

指定一个错误页面:

error_page    404  /404.html;

location = /404.html {

root   /usr/share/nginx/html;

}

指定一个url地址:

error_page 404  /404.html;

error_page 404 = http://www.test.com/error.html;


实例配置;

       error_page 404 /404.html;
       error_page 404 = https://pre.weifengtech.cn/index.html;

  

 

 





以上是关于Nginx自定义404页面的主要内容,如果未能解决你的问题,请参考以下文章

nginx自定义404页面?

WordPress404页面自定义

NGINX 配置404错误页面转向

nginx自定义500404错误页面

Nginx 自定义404500502 页面

nginx设置404 500页面跳转至首页,K哥