- 工信部备案号 滇ICP备05000110号-1
- 滇公安备案 滇53010302000111
- 增值电信业务经营许可证 B1.B2-20181647、滇B1.B2-20190004
- 云南互联网协会理事单位
- 安全联盟认证网站身份V标记
- 域名注册服务机构许可:滇D3-20230001
- 代理域名注册服务机构:新网数码
在Nginx下,配置404等http状态码的引导页面其他很简单,注意以下几点就行。
1,创建自己的404页面,比如l或404.php。html和php都支持,但是必须确保页面的大小不能超过512字节,否则IE浏览器会用默认的错误页面。
2,更改nf配置文件,在http定义区域加入fastcgi_intercept_errors on;
3,在server区域加入error_page 404 = /l
4,测试nginx配置是否正确。
[root@CentOS conf]# /usr/local/webserver/nginx/sbin/nginx -t nginx: the configuration file /usr/local/webserver/nginx/conf/nf syntax is ok nginx: configuration file /usr/local/webserver/nginx/conf/nf test is successful [root@CentOS conf]#
5,平滑重启nginx。
[root@CentOS conf]# /usr/local/webserver/nginx/sbin/nginx -s reload
这时,在浏览器输入不存在的页面,就会显示l页面的内容。
定义其他http状态码的引导页面道理一样
售前咨询
售后咨询
备案咨询
二维码
TOP