Godaddy主机如何设置301重定向
因为Godaddy主机分为Linux和Windows系统,所以设置301重定向的方法也就不一样了,今天笔者在这里将做个简单的总结,Godaddy主机如何设置301重定向。
1、PHP 301转向代码
<?php
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://www.idcspy.com/newpage.html");
exit();
?>
2、ASP 301转向代码
<%@ Language=VBScript %>
<%
Response.Status="301 Moved Permanently"
Response.AddHeader "Location", "http://www.idcspy.com"
%>
3、Coldfusion 301转向代码
下面代码保存为oldpagename.cfm
<.cfheader statuscode="301" statustext="Moved permanently">
<.cfheader name="Location" value="http://www.idcspy.com/newpage.html">
4、ASP.NET 301转向代码
private void Page_Load(object sender, System.EventArgs e)
{
Response.Status = "301 Moved Permanently";
Response.AddHeader("Location",http://www.idcspy.com);
}
5、规范WWW
(利用.htaccess实现301转向)
如果是Linux服务器,并且ApacheMod-Rewrite开启的时候,你可以在网站跟目录中创建.htaccess文件,通过.htaccess可以把所有收录为idcspy.com的链接修改为www.idcspy.com,
.htaccess必须放在网站所在的目录中(即网站首页在同一个文件夹内),请把下面的代码写入.htaccess文件
RewriteEngine on
rewritecond %{http_host} ^idcspy.com [nc]
rewriterule ^(.*)$ http://www.idcspy.com/$1 [r=301,nc]
6、IIS中实现301重定向
如果你的是Windows服务器,可以通过设置IIS实现301重定向(虚拟主机不使用此法)
点击the Internet Services Manager,然后选择需要重定向的文件或文件夹
鼠标右键,选择 a redirection to a URL.
指定要重定向的文件名
选择 The exact URL entered above.
选择 A permanent redirection for this resource.
点击 Apply. 设置完成!
以上总共介绍了6种方法,大家可以根据自己的主机情况来设置301重定向,如果有疑问欢迎来美国主机侦探Godaddy版块进行交流。
本文来自【总结】301转向代码合集
相关日志GoDaddy控制面板设置之301转向