如何从RedirectMatch转换为RewriteRule并删除查询字符串

时间:2015-03-23 14:56:28

标签: .htaccess

我想从rewritematch转换为RewriteRule并删除查询字符串。示例:

RedirectMatch 301  ^/(.*)/old-path/$   /$1/new-path/

1 个答案:

答案 0 :(得分:1)

您可以使用:

RewriteEngine On

RewriteRule ^(.+?)/old-path/?$ /$1/new-path/? [L,NC,R=301]