你的浏览器禁用了JavaScript, 请开启后刷新浏览器获得更好的体验!
输入关键字进行搜索
搜索:
没有找到相关结果
daibu
赞同来自:
vi /usr/local/nginx/conf/nginx.conf
fastcgi_intercept_errors on;
server{error_page 404 = 404.html; #只是转跳而已}
/usr/local/nginx/sbin/nginx –t
the configuration file /usr/local/nginx/conf/nginx.conf syntax is okconfiguration file /usr/local/nginx/conf/nginx.conf test is successful
/usr/local/ws/nginx/sbin/nginx -s reload
在.htaccess文件中加入如下语句:ErrorDocument 404 /404.shtml如果需要修改的网站目录下没有.htaccess文件自己建立一个即可.自己建立一个404.shtml文件,放到网站的根目录就可以了也可以使用其他后缀,只要.htaccess中指定同样的文件就可以,例如404.php
server { listen 80; server_name www.chunmen.com chunmen.com; if ($host != 'www.chunmen.com' ) { rewrite ^/(.*)$ http://www.chunmen.com/$1 permanent; } index index.html index.htm index.php; root /alidata/www/chunmen; error_page 404 404.html; location ~ .*\.(php|php5)?$ { #fastcgi_pass unix:/tmp/php-cgi.sock; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; include fastcgi.conf; } location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$ { expires 30d; } location ~ .*\.(js|css)?$ { expires 1h;
[已注销]
要回复问题请先登录或注册
www.imibox.com 米盒-一个蛮好玩的网站
8 个回复
daibu
赞同来自:
1、创建自己的404.html页面,并放于网站根目录
2、更改nginx.conf在http定义区域加入:
编辑Nginx配置文件,在http 区段添加下面代码:
3、更改nginx.conf 在网站配置中在server 区域加入:
4、测试nginx.conf正确性:
返回下面代码通过:
5、平滑重启Nginx,即可解决完成404页面设置。
这样在用站长工具测试状态码,检测的状态码就是404了,也就完成了Linux下Nginx配置404页面设置。
404错误页面制作的注意事项:
1、不要将404错误转向到网站主页,否则可能会导致主页在搜索引擎中被降权或消失
2、不要使用绝对URL,如果使用绝对URL返回的状态码是302+200,这样会产生大量的重复网页。
3、404页面设置完成,一定要检查是否正确。http头信息返回的一定要是404状态。这个可以通过服务器头部信息检查工具进行检查。
4、404页面不要自动跳转,让用户来决定去向。
5、自定义的404页面必须大于512字节,否则可能会出现IE默认的404页面。
daibu
赞同来自:
daibu
赞同来自:
2.更改nginx.conf在http定义区域加入:
fastcgi_intercept_errors on;
3.更改nginx.conf或虚拟主机的域名.conf在server 区域加入:
error_page 404 /404.html;
4.测试nginx.conf正确性:
/usr/local/nginx/sbin/nginx -t
如果正确应该显示如下信息:
the configuration file /opt/nginx/conf/nginx.conf syntax is ok
configuration file /opt/nginx/conf/nginx.conf test is successful
5.重启nginx
/usr/local/nginx/sbin/nginx -s reload
注意事项:
1.必须要添加:fastcgi_intercept_errors on; 如果这个选项没有设置,即使创建了404.html和配置了error_page也没有效果。
2.不要出于省事或者提高首页权重的目的将首页指定为404错误页面,也不要用其它方法跳转到首页。
3.自定义的404页面必须大于512字节,否则可能会出现IE默认的404页面。例如,假设自定义了404.html,大小只有11个字节(内容为:404错误)。
daibu
赞同来自:
[已注销]
赞同来自:
[已注销]
赞同来自:
[已注销]
赞同来自:
[已注销]
赞同来自: