怎樣使多個網域名稱轉向同一網域名稱(SEO、PR值傳遞、網址轉換)

來源:互聯網
上載者:User

出於SEO、PR值傳遞、網址轉換的目的,在網站初建和網站遷移時我們都需要使用301重新導向,通常包括網域名稱對網域名稱,目錄對目錄和一個獨立網址對另一個獨立網址的重新導向。在bluehost虛擬機器主機上作301重新導向,最常用的方法有2種:
1.直接編輯.htaccess。
2.用cPanel設定。
實質二者都是修改檔案.htaccess,只是前者手工編輯,後者是由cPanel完成。用cPanel操作相當簡單,登陸你的 cPanel(bluehost虛擬機器主機可以選簡體中文)–>Domain–>Redirects,選擇相應的選項即可完成設定,這裡暫不討論。下面講一下直接編輯.htaccess的方法。
注意:在設定301重新導向之前務必備份相應目錄下的.htaccess檔案。
1.重新導向wovane.com到www.wovane.com
這種重新導向旨在使網域名稱唯一,是網站SEO必須要做的,後面重新導向www.wovane.com到wovane.com也是出於同樣的原因,只是形式不同。
開啟.htaccess檔案,加入以下規則。(下面的規則是針對主網域名稱的,子網域名稱要修改)

RewriteEngine On
RewriteCond %{HTTP_HOST} !^www.wovane.com$ [NC]
RewriteRule ^(.*)$ http://www.wovane.com/$1 [L,R=301]

2.重新導向www.wovane.com到domain.com

RewriteEngine On
RewriteCond %{HTTP_HOST} !^wovane.com$ [NC]
RewriteRule ^(.*)$ http://wovane.com/$1 [L,R=301]

3.重新導向olddwovane.com到www.newwovane.com

RewriteEngine On
RewriteCond %{HTTP_HOST} !olddomain.com$ [NC]
RewriteRule ^(.*)$ http://www.newwovane.com/$1 [L,R=301]

4.重新導向oldwovane.com to newwovane.com

RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} !oldwovane.com$ [NC]
RewriteRule ^(.*)$ http://newwovane.com/$1 [L,R=301]

5.重新導向wovane.com/file/file.php 到 otherwovane.com/otherfile/other.php

RewriteCond %{HTTP_HOST} ^www.wovane.com$
RewriteRule ^file/file.php$ http://www.otherwovane.com/otherfile/other.php [R=301,L]

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.