1. 程式人生 > >什麼是301跳轉?如何做301重定向?

什麼是301跳轉?如何做301重定向?

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才有效。

重定向檢測工具