301重定向此:
example.com/AnythingHere / - / AnythingHere.html
为:
example.com/AnythingHere/AnythingHere.html
注意:AnythingHere
表示任何数字/字母/短划线/下划线。
尝试了这个但不起作用:
RewriteRule (.*)/(.*)-(.*)\.html$ (.*)/-/(.*)-(.*)\.html$
答案 0 :(得分:0)
您可以使用RedirectMatch:
RedirectMatch 302 ^/(.+)/-/(.+)\.html$ http://example.com/$1/$2.html