URLRewriteFilter 规则追加到 url 2 次



我遇到了一些奇怪的问题。执行一个规则(最后一个规则)是在转发之前将 url 放到时间,这给了我 404 错误。

网络.xml内容

    <filter>
  <filter-name>UrlRewriteFilter</filter-name>
  <filter-class>org.tuckey.web.filters.urlrewrite.UrlRewriteFilter</filter-class>
  <init-param>
    <param-name>logLevel</param-name>
    <param-value>DEBUG</param-value>
  </init-param>
</filter>
<filter-mapping>
  <filter-name>UrlRewriteFilter</filter-name>
  <url-pattern>/*</url-pattern>
  <dispatcher>REQUEST</dispatcher>
  <!-- FORWARD dispatcher will keep on parsing requests through rule until
     atleast one rule is applied . It sometime may lead into infinite loop
     --> 
  <!--    <dispatcher>FORWARD</dispatcher>  -->
</filter-mapping>

我的规则

<rule>
    <name>DepreatedUrls</name>
    <from>(/my/url2|/my/url3)</from>
    <set type="status">410</set>
    <to last="true">%{context-path}/error/410.html</to>
</rule>
<rule>
    <name>AllRemainingRequests</name>
    <note>
        This rule will block all other requests and return http error
        404 ( not supported ) and custom error message .
    </note>
    <from>(.*)</from>
    <set type="status">404</set>
    <to last="true">/error/410.html</to>
</rule>

所有其他规则都执行正常。每个规则都是最后一个规则(last="true")。但是当执行最后一个规则时,它会将请求转发到/error/410.html/error/410.html

我已经删除了大部分规则定义以保持简单。以下是调试日志

Nov 20, 2012 12:31:10 PM org.apache.catalina.core.ApplicationContext log
INFO: org.tuckey.web.filters.urlrewrite.RuleBase DEBUG: AllRemainingRequests (rule 8) run called with /some-content
Nov 20, 2012 12:31:10 PM org.apache.catalina.core.ApplicationContext log
INFO: org.tuckey.web.filters.urlrewrite.RuleBase DEBUG: matched "from"
Nov 20, 2012 12:31:10 PM org.apache.catalina.core.ApplicationContext log
INFO: org.tuckey.web.filters.urlrewrite.SetAttribute DEBUG: set Set status null 404 called
Nov 20, 2012 12:31:10 PM org.apache.catalina.core.ApplicationContext log
INFO: org.tuckey.web.filters.urlrewrite.SetAttribute DEBUG: setting status
Nov 20, 2012 12:31:10 PM org.apache.catalina.core.ApplicationContext log
INFO: org.tuckey.web.filters.urlrewrite.RuleExecutionOutput DEBUG: needs to be forwarded to /error/410.html/error/410.html
Nov 20, 2012 12:31:10 PM org.apache.catalina.core.ApplicationContext log
INFO: org.tuckey.web.filters.urlrewrite.UrlRewriter DEBUG: rule is last

通过一些打击和试用,我找到了解决方案.所有剩余请求的"from"组件令人不安。当我为所有剩余请求输入以下定义时,它工作正常.

<rule>
    <name>AllRemainingRequests</name>
    <from>(/.*)</from> 
    <set type="status">404</set>
    <to last="true">/error/410.html</to>
</rule>

唯一的更改是"/"

最新更新