UrlRewriteFilter:删除参数

时间:2011-07-08 08:42:49

标签: url-rewriting

我有一个像example.com/sample.html?h=22&w=23

这样的网址

如何使用UrlRewriteFilter从此网址中删除参数并使用URL example.com/sample.html重定向请求?我需要删除params,因为我的应用程序(托管在Tomcat上)不能处理这些。

1 个答案:

答案 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>

你可能想要使用前向而不是重定向,这取决于我们的情况。