301跳转和301重定向是同一个意思两种说法。
什么是301跳转?
如何做301跳转
各种环境下重定向实施代码
IIS 重定向
ColdFusion 重定向
<.cfheader statuscode="301" statustext="Moved permanently">
<.cfheader name="Location" value="http://www.new-url.com">
PHP 重定向
<?
Header( "HTTP/1.1 301 Moved Permanently" );
Header( "Location: http://www.new-url.com" );
?>
ASP 重定向
<%@ Language=VBScript %>
<%
Response.Status="301 Moved Permanently"
Response.AddHeader "Location","http://www.new-url.com/"
%>
ASP .NET 重定向
<script runat="server">
private void Page_Load(object sender, System.EventArgs e)
{
Response.Status = "301 Moved Permanently";
Response.AddHeader("Location","http://www.new-url.com");
}
</script>
JSP (Java) 重定向
<%
response.setStatus(301);
response.setHeader( "Location", "http://www.new-url.com/" );
response.setHeader( "Connection", "close" );
%>
CGI PERL 重定向
$q = new CGI;
print $q->redirect("http://www.new-url.com/");
Ruby on Rails 重定向
def old_action
headers["Status"] = "301 Moved Permanently"
redirect_to "http://www.new-url.com/"
end
老域名重定向到新域名(htaccess 重定向)
使用下面代码创建 .htaccess 文件,这将确保所有的目录和您的旧域的网页会得到正确重定向到新域名。htaccess文件需要放在您的旧网站的根目录下。
Options +FollowSymLinks
RewriteEngine on
RewriteRule (.*) http://www.newdomain.com/$1 [R=301,L]
请替换www.newdomain.com为您实际域名。
除了重定向,我建议你通知合作伙伴修改链接并重新链接到您的新网站。
注:此重定向(htaccess文件)方法只有在Linux服务器上使用apache并启用 Apache Mod-Rewrite才有效。
重定向 到www (htaccess redirect)
使用下面代码创建 .htaccess 文件, 这将确保所有的请求从domain.com 重新定向到 www.domain.com
Options +FollowSymlinks
RewriteEngine on
rewritecond %{http_host} ^domain.com [nc]
rewriterule ^(.*)$ http://www.domain.com/$1 [r=301,nc]
请替换www.newdomain.com为您实际域名。
注:此重定向(htaccess文件)方法只有在Linux服务器上使用apache并启用 Apache Mod-Rewrite才有效。
重定向检测工具