nginx自定义404403页面

Posted caidingyu

tags:

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

 

1、在nginx的http模块加入:

fastcgi_intercept_errors on;

2、在server模块加入

location / {
        root   /data;
        index  index.html index.htm yunmai.html;
        error_page   403  /403.html;
        error_page   404  /404.html;
    location = /403.html {
        root   /usr/share/nginx/html;
    }
    location = /404.html {
        root   /usr/share/nginx/html;
    }

3、编辑以下路径下的自定义页面

技术图片

4、重载nginx

nginx -s reload

  

参考:https://blog.51cto.com/hunkz/1840200

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

Sublime Text3自定义代码片段

使用 nginx 返回自定义 403 错误页面

nginx设置404页码不生效指定域名跨域的设置

VSCode自定义代码片段——CSS选择器

HTML代码片段

HTML代码片段