码迷,mamicode.com
首页 > 系统相关 > 详细

Ubuntu nginx 配置404错误页面

时间:2015-07-04 06:14:45      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:

1.创建自己的404.html页面;

2.更改nginx.conf在http定义区域加入:

/etc/nginx# vim nginx.conf 下添加 fastcgi_intercept_errors on; 
 http{
    ......
    fastcgi_intercept_errors on; 
    ......
}

3.更改/etc/nginx/sites-enabled/default 文件

 #error_page 404 /404.html;
改为
 error_page 404 = /404.html; 或者 error_page 404 = http://www.xxx.com/404.html

4.测试nginx.conf正确性: nginx –t

5.重启nginx: nginx -s reload

Ubuntu nginx 配置404错误页面

标签:

原文地址:http://www.cnblogs.com/duzishanglu/p/4620073.html

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