码迷,mamicode.com
首页 > 其他好文 > 详细

nginx自定义404、403页面

时间:2019-05-15 12:26:17      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:inf   tps   fas   har   too   info   index   load   alt   

 

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自定义404、403页面

标签:inf   tps   fas   har   too   info   index   load   alt   

原文地址:https://www.cnblogs.com/caidingyu/p/10868682.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!