cheClockRate 3600RepeatLimit 32RewriteCond %{HTTP:Host} ^www\.isapirewrite\.com$RewriteRule (.*) http\://www\.16sucai\.com$1 [NC,R=301]将页面301重定向到另外一个页面# ISAPI_Rewrite 2.x 版本[ISAPI_Rewrite]# 3600 = 1 hourCacheClockRate 3600RepeatLimit 32RewriteRule ^/oldpage.html$ http:///bibu.html[I,O,RP,L]# ISAPI_Rewrite 3.0 版本[ISAPI_Rewrite]# 3600 = 1 hourCacheClockRate 3600RepeatLimit 32RewriteRule ^/oldpage.html$ http:///bibu.html[NC,L,R=301,O]注意:ISAPI_Rewrite 1.3是现在国内应用得比较多的一个老版本,它可用于url 重写,但并不适合用来实现真正的301重定向功能。建议下载最新的ISAPI_Rewrite 3.0 版本。在 url转发和301转向(重定向跳转)的实现 这篇文章介绍了一段ISAPI_Rewrite 1.3 的重定向代码,这段代码在IIS下对域名重定向虽然能够顺利跳转,但是返回的仍然是302 HTTP header,而不是301 状态码。而且该段代码用于301重定向后,在blog中的其他页面都会跳转到首页。这样设置以后,你的windows iis 也能实现301重定向了,不管是Google 和百度搜索引擎都不会有因为带有www和不带www的域名而产生重复页面问题了。
2、asp的两种301重定向方法
第一种:可以使用web.config的方式重定向。代码如下:<configuration> <system.webServer> <rewrite> <rules> <rule name="WWW Redirect" stopProcessing="true"> <match url=".*" /> <conditions> <add input="{HTTP_HOST}" pattern="^songjiguang.comcontentquot; /> </conditions> <action type="Redirect" url="http:///{R:0}" redirectType="Permanent" /> </rule> </rules> </rewrite> </system.webServer></configuration>保存并上传到网站根目录即可。 第二种:头部添加<% Response.Status="301 Moved Permanently" Response.AddHeader "Location","http:///" ''你要转到的地址,实际到具体页面即可 Response.End %>
3、php的301重定向方法
<?php $the_host =
网站301重定向的四种方法_网学