我有以下规则:
<rule>
<from>^/users/(.*)$</from>
<to last="true">/users.do$1</to>
</rule>
我希望匹配以下网址:
http://localhost:8077/users/?elemsPerPage=10
并将其重定向到:
http://localhost:8077/users.do?elemsPerPage=10
问题是当url rewriter引擎找到“?”时url中的字符在$ 1匹配参数中不返回任何其他内容。它既不会将参数添加到查询字符串中。有什么想法吗?
答案 0 :(得分:7)
最后我找到了解决这个问题的方法:
规则:
<rule>
<from>^/users/$</from>
<to last="true">/users.do?%{query-string}</to>
</rule>
答案 1 :(得分:7)
有更好的方法,尝试在urlrewrite中添加use-query-string =“true”
<urlrewrite use-query-string="true">