nginx自定义404he502页面
买完vps搭建了lnmp之后,一直想自定义404和502错误页面,nginx自带的页面虽然不是很丑,但是那寥寥几个字总是会放走不少访问者。我在网上查了不少网页,可是一个也没有说的细致到每一步该怎么做,我也是摸着石头过河。今天终于弄完了自定义404和502错误页面。
我的vps的配置大部分是张宴先生的配置
1.创建自己的404.html页面,比如我的http://www.1dle.com/error/404.html
2.更改nginx.conf在http定义区域加入:
fastcgi_intercept_errors on;
3.更改nginx.conf在server 区域加入:
error_page 404 = /error/404.html
4.测试nginx.conf正确性:
/usr/local/webserver/nginx/sbin/nginx -t
如果正确应该显示如下信息:
the configuration file /usr/local/webserver/nginx/conf/nginx.conf syntax is ok
configuration file /usr/local/webserver/nginx/conf/nginx.conf test is successful
5.重启nginx
/usr/local/webserver/nginx/sbin/nginx -s reload
版权声明:
作者:xinyu2ru
链接:https://www.rxx0.com/software/lnmp/custom-404he502-page-nginx.html
来源:RUBLOG-分享我的生活
文章版权归作者所有,未经允许请勿转载。
共有 0 条评论