Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的网站中,我想重定向http://domain_name.com/blog到http://domain_name.com/news,它也应该符合以下标准
http://domain_name.com/blog
http://domain_name.com/news
http://domain_name.com/blog/2012/06/06//blog_title至http://domain_name.com/news
http://domain_name.com/blog/2012/06/06//blog_title
http://domain_name.com/blog/blog/?cat=2至http://domain_name.com/news
http://domain_name.com/blog/blog/?cat=2
我该怎么做?
无法测试,但无论如何...
RewriteEngine on RewriteRule / RewriteRule ^/blog/.*$ /news/ [L,R=301]