Well, there is nothing in the filter to support your use case.
However, you can configure your filter (in web.xml) as follows to achieve the desired
<filter-mapping>
<filter-name>UrlRewriteFilter</filter-name>
<url-pattern>/context-to-which-the-rule-shall-be-applied/*</url-pattern>
</filter-mapping>
Requests to none of the other paths ("contexts") would pass through the filter.
Cheers
Avlesh
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "UrlRewrite" group.
To post to this group, send email to
urlrewrite@... To unsubscribe from this group, send email to
urlrewrite+unsubscribe@... For more options, visit this group at http://groups.google.com/group/urlrewrite?hl=en
-~----------~----~----~----~------~----~------~--~---