通过htaccess 301重定向删除“/”和“ - ”

时间:2016-03-13 19:41:25

标签: apache .htaccess url-rewriting http-status-code-301

301重定向此:

  

example.com/AnythingHere / - / AnythingHere.html

为:

  

example.com/AnythingHere/AnythingHere.html

注意:AnythingHere表示任何数字/字母/短划线/下划线。

尝试了这个但不起作用:

RewriteRule (.*)/(.*)-(.*)\.html$  (.*)/-/(.*)-(.*)\.html$

1 个答案:

答案 0 :(得分:0)

您可以使用RedirectMatch:

RedirectMatch 302 ^/(.+)/-/(.+)\.html$ http://example.com/$1/$2.html