我使用JBoss4.0.3应用服务器部署了一个Web应用程序。在这个Web应用程序中,我使用urlrewritefilter-4.0.3进行url重写,并在urlrewrite.xml中编写了一条规则
<rule>
<from>subCategories/([a-z0-9]+)/([a-z0-9]+)$*</from>
<to>browseCategories.do?category=$1&subjectName=$2</to>
</rule>
我想将网址从https://localhost:8080/subCategories/sub11758/Physics
转换为
https://localhost:8080/browseCategories.do?category=sub11758&subjectName=Physics
但urlrewriter未重定向到所需的网址。请帮我纠正这个或建议一种调试urlrewriting的方法。