标签: regex url-rewriting
我有一个可以
my-domain.com/my-path/prod234728749.html
我想创建一个规则来匹配任何网址组合:
"/my-path/prod" + anycombination-of-number + ".html"
组合可以是不同数量的未知长度的组合。
答案 0 :(得分:2)
\d+或[0-9]+进行组合。完整内容为/my-path/prod[0-9]+\\.html或/my-path/prod\d+\\.html
\d+
[0-9]+
/my-path/prod[0-9]+\\.html
/my-path/prod\d+\\.html