我有一个这种格式的博客:
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