分类:虚拟主机问题 | 发布日期:2014-04-22 | 阅读次数:4953
301重定向说白了就是通过各种方法将网络请求重新转到其它位置的操作,详细说明请查看百度百科。301重定向的实现方法如下:
1、请在需要重定向的网页头部加上这段代码,把www.red.net.cn换成您要重定向过去的域名即可。
ASP代码如下:
Response.Status="301 Moved Permanently"
Response.AddHeader "Location",http://www.red.net.cn"
Response.End
PHP代码如下:
header("HTTP/1.1 301 Moved Permanently");
header("Location:http://www.red.net.cn");
exit();
2、如果您使用的是IIS 7.0以上版本的空间,还可以通过修改web.config文件来实现301重定向。请在web.config文件中加上下面的代码。同样也是把www.red.net.cn换成您需要的新网址,www.olddomain.com是老网址。
<pre style="line-height: 1.42857;"><p><?xml version="1.0" encoding="utf-8"?></p><p><configuration></p><p><system.webServer></p><p><rewrite></p><p><rules></p><p><rule stopProcessing="true" name="rule 1"></p><p><match ignoreCase="false" url="^(.*)$" /></p><p><conditions logicalGrouping="MatchAll"></p><p><add pattern="^www.olddomain.com" input="{HTTP_HOST}" /></p><p></conditions></p><p><action type="Redirect" url="http://www.red.net.cn/{R:1}" redirectType="Permanent" /></p><p></rule></p><p></rules></p><p></rewrite></p><p></system.webServer></p><p></configuration></p>
3、如果您使用的是Linux系统下的PHP空间,也可以通过修改.htaccess文件来实现301重定向。请在.htaccess文件中加上下面的代码。同样也是把www.red.net.cn换成您需要的新网址,www.olddomain.com是老网址。
RewriteEngine on
RewriteCond %{HTTP_HOST} ^www.olddomain.com [NC]
RewriteRule ^(.*)$ http://www.red.net.cn/$1 [L,R=301]
返回帮助中心