使用 IIS 7 重写模块重写 & 符号 URL

发布于 2024-11-30 05:08:13 字数 737 浏览 1 评论 0原文

如何在 web.config 文件的 URL 重写规则中使用与号 (&)?

我想将 url: 重写

http://www.foo.com/index.asp?SomeParameter=SomeValue&SomeId=00

为:

http://www.foo.com/Section/Page

我在 web.config 中编写了以下规则:

    <rule name="RuleName" stopProcessing="true">
      <match url="^index.asp?SomeParameter=SomeValue&SomeId=00" ignoreCase="true" />
      <action type="Redirect" url="Section/Page"  appendQueryString="false" />
    </rule>

但我在输入 url 中使用与号 (&) 时遇到问题。当尝试重写时我得到:

无法访问所请求的页面,因为相关的 该页面的配置数据无效。

我尝试将 & 符号解析为 %26,但出现了相同的错误。

How can I use an ampersand (&) in my url rewrite rules in the web.config file?

I want to rewrite the url:

http://www.foo.com/index.asp?SomeParameter=SomeValue&SomeId=00

to:

http://www.foo.com/Section/Page

I wrote the following rule in my web.config:

    <rule name="RuleName" stopProcessing="true">
      <match url="^index.asp?SomeParameter=SomeValue&SomeId=00" ignoreCase="true" />
      <action type="Redirect" url="Section/Page"  appendQueryString="false" />
    </rule>

But I'm having problems with that Ampersand (&) in the input url. When trying to rewrite I Get:

The requested page cannot be accessed because the related
configuration data for the page is invalid.

I Tried to parse the ampersand to %26, but I get the same errror.

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

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

发布评论

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

评论(1

暮年 2024-12-07 05:08:13

尝试使用 HTML &符号字符代码 &

Try using the HTML ampersand character code &

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