URL重写:重定向传递查询参数

发布于 2024-12-19 00:18:50 字数 508 浏览 1 评论 0 原文

使用 IIS 7.5,我如何重定向

http://localhost/en/test?id=tool-37

http://localhost/en/tool/37

我编写了此规则,但它不起作用

<rule name="Tool-Diseases" stopProcessing="true">
    <match url="(.+)/test.+id=([0-9]+)" />
    <conditions logicalGrouping="MatchAll" trackAllCaptures="false" />
    <action type="Redirect" url="{R:1}/tool/{R:2}" appendQueryString="true" />
</rule>

谢谢

With IIS 7.5 how can I redirect

http://localhost/en/test?id=tool-37

to

http://localhost/en/tool/37

I write this rule but it doesn't work

<rule name="Tool-Diseases" stopProcessing="true">
    <match url="(.+)/test.+id=([0-9]+)" />
    <conditions logicalGrouping="MatchAll" trackAllCaptures="false" />
    <action type="Redirect" url="{R:1}/tool/{R:2}" appendQueryString="true" />
</rule>

Thank you

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

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

发布评论

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

评论(1

知你几分 2024-12-26 00:18:51

URL 和查询字符串在 IIS 重写模块中单独处理。

例如,如果对此 URL 发出请求: http:// /www.mysite.com/content/default.aspx?tabid=2&subtabid=3,然后在站点级别定义重写规则:

  • 规则模式获取 URL 字符串 content/default.aspx 为一个
  • 输入QUERY_STRING 服务器变量包含 tabid=2&subtabid=3。
  • HTTP_HOST 服务器变量包含 www.mysite.com。
  • SERVER_PORT 服务器变量包含 80。SERVER_PORT_SECURE
  • 服务器变量包含 0,HTTPS 包含 OFF。
  • REQUEST_URI 服务器变量包含 /default.aspx?tabid=2&subtabid=3

您可以在 IIS 重写设置的“服务器变量”部分中输入正则表达式以匹配您的查询字符串。

The URL and the QueryString are handled seperate in IIS Rewrite Module.

For example, if a request was made for this URL: http://www.mysite.com/content/default.aspx?tabid=2&subtabid=3, and a rewrite rule was defined on the site level then:

  • The rule pattern gets the URL string content/default.aspx as an input
  • The QUERY_STRING server variable contains tabid=2&subtabid=3.
  • The HTTP_HOST server variable contains www.mysite.com.
  • The SERVER_PORT server variable contains 80.
  • The SERVER_PORT_SECURE server variable contains 0 and HTTPS contains OFF.
  • The REQUEST_URI server variable contains /default.aspx?tabid=2&subtabid=3

You can enter the regex to match your querystring in the "Server Variables" Section in the IIS rewrite settings.

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