gpt4 book ai didi

java - 使用 Tuckey URL Rewrite 时获取查询字符串

转载 作者:行者123 更新时间:2023-11-29 09:39:51 25 4
gpt4 key购买 nike

我有以下规则:

<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 重写引擎找到“?” url 中的字符它不会在 $1 匹配参数中返回任何其他内容。它也没有将参数添加到查询字符串中。有什么想法吗?

最佳答案

最后我找到了解决这个问题的方法:

规则:

<rule>
<from>^/users/$</from>
<to last="true">/users.do?%{query-string}</to>
</rule>

关于java - 使用 Tuckey URL Rewrite 时获取查询字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9367232/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com