我想将mysite.com/blog/any-thing/any-where/
重定向到mysite.com/any-thing/any-where/
,因此我创建了一个.htaccess,如下所示:
RewriteBase /
RewriteRule ^blog/(.*)$ /$1 [R=301,L]
虽然运行mysite.com/blog
但重定向到mysite.com
,但可以正常运行。
如何确保mysite.com/blog/
不重定向,mysite.com/blog/anything
重定向到/anything
。
答案 0 :(得分:0)
只需调整你的正则表达式:
RewriteEngine On
RewriteRule ^blog/(.+)$ /$1 [R=301,L]