nginx出现404,502等错误时,跳转至统一页面,给用户提示页面。步骤如下:
一:编辑nginx配置文件
vim /usr/local/nginx/conf/nginx.conf
在http块处加入:fastcgi_intercept_errors on;
在server块处加入:error_page 404 502 503 504 /404.htm; #当nginx出实404,502,503,504错误时跳转至404.htm页面
二:编辑404.htm
三:检查nginx配置文件是否出错 /etc/init.d/nginx configtest
四:重新加载nginx /etc/init.d/nginx reload
本文出自 “夜读才子盼女鬼” 博客,请务必保留此出处http://more3.blog.51cto.com/9929586/1744384
原文地址:http://more3.blog.51cto.com/9929586/1744384