htaccess 301重定向无法正常工作

时间:2013-02-28 09:25:07

标签: .htaccess rewrite

在我的网站中,我想将http://domain_name.com/blog重定向到http://domain_name.com/news,它也可以使用以下条件

  1. http://domain_name.com/blog/2012/06/06//blog_titlehttp://domain_name.com/news

  2. http://domain_name.com/blog/blog/?cat=2http://domain_name.com/news

  3. 我该怎么做?

1 个答案:

答案 0 :(得分:0)

无法测试,但无论如何......

RewriteEngine on
RewriteRule /
RewriteRule ^/blog/.*$ /news/ [L,R=301]
相关问题