nginx 404页面配置
当访问的网站出了问题或用户试图访问一个不存在的页面时,此时服务器(nginx)会返回状态码为404的错误信息,此时对应的页面就是404页面。 nginx 404公益 当碰到404错误时显示404公益活动,可以帮助孩子回家。 404公益的链接:http://yibo.iyiyun.com/User/install/web404/
nginx下实现404公益页面
复制代码代码示例:
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 2、error_page :The directive specifies the URI that will be shown for the errors indicated. |