当前位置: > Linux服务器 > nginx >

nginx 404页面配置_nginx 404错误页显示公益信息

时间:2014-11-23 13:34来源:it网 作者:it

nginx 404页面配置

当访问的网站出了问题或用户试图访问一个不存在的页面时,此时服务器(nginx)会返回状态码为404的错误信息,此时对应的页面就是404页面。
nginx服务器默认的404内容为404 not found!

nginx 404公益

当碰到404错误时显示404公益活动,可以帮助孩子回家。

404公益的链接:http://yibo.iyiyun.com/User/install/web404/

nginx下实现404公益页面
1)从404公益链接上下载404.html页面
2)更改nginx监听的网站虚拟主机配置文件,×××.conf,在server定义区域内增加
 

复制代码代码示例:
fastcgi_intercept_errors on;
error_page 404 = /404.html;

编辑location定义区域支持404页面呈现:
 

复制代码代码示例:
#404公益  
fastcgi_intercept_errors on;   
error_page 404 = /404.html;  
location = /404.html {  
    root /public_404/html;  

3)reload nginx
参数说明
1、fastcgi_intercept_errors : This directive determines whether or not to transfer 4xx and 5xx errors back to the client or to allow Nginx to answer with directive error_page.

2、error_page :The directive specifies the URI that will be shown for the errors indicated.

 
 
(责任编辑:IT)
------分隔线----------------------------
栏目列表
推荐内容