标签: .htaccess
我想从rewritematch转换为RewriteRule并删除查询字符串。示例:
RedirectMatch 301 ^/(.*)/old-path/$ /$1/new-path/
答案 0 :(得分:1)
您可以使用:
RewriteEngine On RewriteRule ^(.+?)/old-path/?$ /$1/new-path/? [L,NC,R=301]