仲介交易 HTTP://www.aliyun.com/zixun/aggregation/6858.html">SEO診斷 淘寶客 雲主機 技術大廳
由於302重定向是臨時性重定向,很容易實現網址劫持,並劫持對方的PR值等,所以搜尋引擎一般不大喜歡這種重定向類型,所以在做重定向的時候最好弄成301重定向。 嚴格說來用301重定向是避免SEO作弊,並不是真正的SEO優化。
下面我們來看怎樣來實現301重定向:
如果你的伺服器是windows的,而且是獨立主機,那麼你可以這樣設置:
打開「internet資訊服務管理員」,然後在「虛擬目錄」下面選中「重定向到URL(u)」,然後輸入你要重定向的目標網址,然後選中「資源的永久重定向」確定即可。
如果你的伺服器是Apache的,那麼可以利用.htaccess檔來實現重定向:
只要往其中加入類似
RewriteEngine on
RewriteCond %{HTTP_host} ^beijing-seo.com.cn [NC]
RewriteRule ^(.*)$ HTTP://beijing-seo.com.cn/$1 [L,R=301]即可。
另外,可以用ASP、PHP、. NET代碼來實現301重定向:
ASP:
Response.Status=」301 Moved Permanently」
Response.AddHeader 「Location」,」HTTP://beijing-seo.com.cn/」
Response.End
PHP:
header(」HTTP/1.1 301 Moved Permanently」);
header(」Location:HTTP://beijing-seo.com.cn/「);
exit();
. NET:
<script runat=」server」>
private void Page_Load(object sender, System.EventArgs e)
{
Response.Status = 「301 Moved Permanently」;
Response.AddHeader(」Location」,」HTTP://beijing-seo.com.cn/);
}
</script>
站長網新聞榜 www.admin5.com/top