JDP 發表於 2011-6-30 14:34:35

更換網址 301 Redirect For Apache

當網站要更換網址時,可以利用修改.htaccess加入以下內容的方式來達到自動轉到新網址Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} !^newdomain\.com
RewriteRule ^(.*)$ http://www.newdomain.com/$1
可用來測試是否正確設定301導向的網站
http://www.internetofficer.com/seo-tool/redirect-check/

Reference:
http://www.mcanerin.com/en/articles/301-redirect-apache.asp
http://steachs.com/archives/709
http://shachi.tw/301-moved-permanently/



頁: [1]
查看完整版本: 更換網址 301 Redirect For Apache