如何将具有子目录的域重定向到新域?

时间:2012-04-01 17:27:25

标签: apache .htaccess mod-rewrite redirect

我有一个这种格式的博客:
http://www.example.com/blog/articletitle

现在我想移动博客,我需要设置一个mod重写重定向到: http://www.newdomain.com/articletitle

这是我的尝试,但它不能按我的意愿运作:

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

如果我致电www.example.com/blog/helloworld,它会将我重定向到www.newdomain.com/blog/helloworld

0 个答案:

没有答案