将旧网址重定向到新的子网域

时间:2013-03-07 14:53:00

标签: wordpress .htaccess mod-rewrite redirect subdomain

我在example.com/blog下有一个博客,但现在我改为blog.example.com,重定向到同一个旧文件夹。

我不希望用户直接访问旧网址,因此,将博客重定向到博客。我该怎么办?

我更喜欢使用.htaccess。当前是WordPress的默认值:

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress

1 个答案:

答案 0 :(得分:1)

你可以试试这个

    RewriteRule ^blog/(.*)$ http://blog.example.com/$1 [R=301,L]

或 您可以执行以下操作,从主域检查 - 这将检查您是否已经在blog.example.com,否则它将重定向。

    RewriteCond %{HTTP_HOST} !^blog\.example\.com$ [NC] 
    RewriteRule ^blog/$ http://blog.example.com [L,NC,R=301]