使用 Tuckey URL 重写时获取查询字符串

发布于 2025-01-08 03:39:30 字数 424 浏览 0 评论 0原文

我有以下规则:

<rule>
     <from>^/users/(.*)$</from>
     <to last="true">/users.do$1</to>
</rule>

我想匹配以下 url:

http://localhost:8077/users/?elemsPerPage=10

并将其重定向到:

http://localhost:8077/users.do?elemsPerPage=10

问题是,当 url 重写器引擎找到“?”时url 中的字符不会返回 $1 匹配参数中的任何其他内容。它也不将参数添加到查询字符串中。有什么想法吗?

I have the following rule:

<rule>
     <from>^/users/(.*)
lt;/from>
     <to last="true">/users.do$1</to>
</rule>

And I want to match the following url:

http://localhost:8077/users/?elemsPerPage=10

and redirect it to:

http://localhost:8077/users.do?elemsPerPage=10

The problem is that when the url rewriter engine finds the "?" character in the url it does not return anything else in the $1 matched parameter. Neither it adds the parameters to the query string. Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

⊕婉儿 2025-01-15 03:39:30

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

规则:

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

Finally I've found a way to solve this:

Rule:

<rule>
     <from>^/users/
lt;/from>
     <to last="true">/users.do?%{query-string}</to>
</rule>
梦过后 2025-01-15 03:39:30

有更好的方法,尝试在 urlrewrite

中添加 use-query-string="true"

There is a better way, try to add use-query-string="true" in urlrewrite


<urlrewrite use-query-string="true">

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文