我愛你,你是自由的。
建議使用,不會對SEO有不良影響
<?php
header(“HTTP/1.1 301 Moved Permanently");
header(“Location: http://www.new-url.com/");
?>
<p>The document has moved <a href="http://www.new-url.com/">here</a>.</p>
註
1) 使用者的瀏覽器必須根據HTTP header的Location欄位值(稱做URI)來轉導網址。
2) 除非Request Method是HEAD,不然伺服器端回覆的訊息內必須包含一短的新網址的連結(hyperlink)資訊。
<%@ Language=VBScript %>
<%
Response.Status="301 Moved Permanently"
Response.AddHeader “Location", " http://www.new-url.com/"
Response.End
%>
<p>The document has moved <a href="http://www.new-url.com/">here</a>.</p>
<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>
<p>The document has moved <a href="http://www.new-url.com/">here</a>.</p>
Options +FollowSymLinks
RewriteEngine on
RewriteRule ^(.*) http://www.new-domain.com/$1 [R=301,L]
Options +FollowSymlinks
RewriteEngine on
RewriteCond %{http_host} ^old-domain.com [NC]
RewriteRule ^(.*)$ http://www.new-domain.com/$1 [R=301,NC]
不建議使用,會對新網站SEO有不良影響
<?php
header(“HTTP/1.1 302 Found");
header(“Location: http://www.new-url.com/");
?>
<p>The document has moved <a href="http://www.new-url.com/">here</a>.</p>
(…其他ASP, ASP.NET程式及設定.htaccess/httpd.conf方法,此處略…)
註
1) 302,在HTTP/1.0是『Moved Temporarily』;HTTP/1.1是『Found』,會根據HTTP header的Location欄位值(稱做URI)來轉導網址。但是很多網路上的文章會直接稱302是Moved Temporatily。
2) 除非Request Method是HEAD,不然伺服器端回覆的訊息內必須包含一短的新網址的連結(hyperlink)資訊。
3) HTTP 1.1中增訂了『307 Temporary Redirect』,307碼時只會根據GET Request轉導網址。
4) 更多的HTTP 302細節和307會被再增訂出來的原因請參考。
非常不建議使用,會對新網站SEO有不良影響。有些文章寫說要用時最好秒數設定大於10秒以避免對頁面的SEO不利。
<html>
<head>
<meta http-equiv="refresh" content="0;url=http://www.new-url.com/" />
</head>
因為搜尋引擎的bot一般都不理會JavaScript,所以做什麼動作不會被檢查。這意味著要實做『點擊計算(click counting)後再轉導到目的網址的話,用這個方法比較好(302或refresh都是不好的方法)』。如果使用者按瀏覽器的『上一頁』按鈕,不會跳回轉導頁面。
<html>
<head>
<script language="JavaScript">
<!–
window.location.replace(“http://www.new-url.com");
//–>
</script>
</head>
</html>
<html>
<head>
<script language="JavaScript" src="redirect.js"></script>
</head>
因為搜尋引擎的bot一般都不理會『表單』,所以做什麼動作不會被檢查。
<script language="JavaScript">
<!–
document.myform.submit();
//–>
</script>
<form name="myform" action="http://www.new-url.com/" method="get"></form>