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

发布时间:2020-02-20编辑:脚本学堂
有关nginx 404 配置的方法,如何配置nginx 404页面,将nginx 404错误页面中显示公益信息,nginx 404 not found时显示公益页面,需要的朋友参考下。

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.