使用 IIS 7 重写模块重写 & 符号 URL
如何在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用 HTML &符号字符代码
&
Try using the HTML ampersand character code
&