2

tukey.web.filters.urlrewrite.UrlRewriteFilter` 重写,但是

<urlrewrite>
    <rule>
        <from>^/ms-office$</from>
        <to>/office</to>
    </rule>
    <rule>
        <from>/ms-office/(^[0-9]+$)</from>
        <to>/office/eidt?id=$1</to>
    </rule>
</urlrewrite>

当我进入ms-office/10一个 getWARNING: No mapping found for HTTP request with URI [/s-mvc/ms-office/10] in DispatcherServlet with name 'config'

4

1 回答 1

0

如果第二个from应该匹配/ms-office/10,那么您错过^了第一个规则中的锚点。

于 2013-02-04T20:01:27.813 回答