2

tuckey.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/10getに入るときWARNING: No mapping found for HTTP request with URI [/s-mvc/ms-office/10] in DispatcherServlet with name 'config'

4

1 に答える 1

0

2 番目fromが一致する場合は、最初のルールのようにアンカー/ms-office/10を逃したことになります。^

于 2013-02-04T20:01:27.813 に答える