使用Tuckey,如果我只想转发/ abc到/xyz.html但是留下/ abc / def或其他任何东西,我该怎么做?
基本上只应重定向/ abc本身,并且/ abc下的任何页面都不受影响。
答案 0 :(得分:1)
只需在<from>
元素中使用regexp定义路径的显式结束。
例如
<urlrewrite>
<rule match-type="regex">
<condition type="method">GET</condition>
<from>^/abc$</from>
<to type="redirect">/xyz.html</to>
</rule>
</urlrewrite>
因此,这会将/abc
(以及/abc/
)重定向到目标/xyz.html
网址,其余网址将不会匹配,因此无法处理。