WordPress 更换域名后老域名页面自动转向新域名的301代码
此代码是从嘟嘟鱼博客转载过来,感谢他的分享 ^^
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
rewritecond %{http_host} ^www.quickshare.com.cn [nc]
rewriterule ^(.*)$ http://www.kuaixiang.net/$1 [L,R=301]
RewriteCond %{http_host} ^kuaixiang.net [NC]
RewriteRule ^(.*)$ http://www.kuaixiang.net/$1 [L,R=301]
RewriteCond %{http_host} ^quickshare.com.cn [NC]
RewriteRule ^(.*)$ http://www.kuaixiang.net/$1 [L,R=301]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule># END WordPress