我要重定向/重写中间目录“ test”(将其删除)
RewriteRule ^test(.*)$ /$1 [L,R=301]
RedirectMatch 301 ^/test/([^/]+)(?:/.*)?$ /$1
测试网址:https://my.domain/en-us/test/my/cool/path
目标网址:https://my.domain/en-us/my/cool/path
,但似乎没有任何变化。 htaccess,重定向通常可以正常运行
这个问题已经问了很多遍了,但是他们都指出了这两个答案...
答案 0 :(得分:0)
这对我有用
RewriteRule ^(.*?)test/(.*)?$ /$1$2 [L,R=301]