.htaccess 301按位置删除文件夹

时间:2014-02-11 14:01:12

标签: apache .htaccess mod-rewrite redirect

我需要在位于同一域的链接之间设置301重定向。 原生网址语法为 / product / XX / productname / product / XXX / productname 新网址语法为 / product / productname

“XX”位置代表我需要摆脱的两位或三位数变量号。

我可以使用哪种重写规则?

谢谢!

1 个答案:

答案 0 :(得分:0)

使用RedirectMatch规则:

RedirectMatch 301 ^/(product)/...?/(.+)/?$ /$1/$2/