我有一个像example.com/sample.html?h=22&w=23
这样的网址如何使用UrlRewriteFilter从此网址中删除参数并使用URL example.com/sample.html重定向请求?我需要删除params,因为我的应用程序(托管在Tomcat上)不能处理这些。
答案 0 :(得分:0)
<urlrewrite>
<rule>
<note>Forward calls from sample.html to sample.html with no query_string</note>
<from>^/sample.html$</from>
<to type="redirect" last="true">/sample.html</to>
</rule>
<urlrewrite>
你可能想要使用前向而不是重定向,这取决于我们的情况。