我们在 IIS7.5 上有以下重写规则(在 James Moberg 回答后重写):
<rule name="Anything else to the event handler" enabled="true" stopProcessing="true">
<match url="^(.*)$" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false">
<add input="{PATH_INFO}" pattern="^.*(/index.cfm/).*$" negate="true" />
</conditions>
<action type="Rewrite" url="/index.cfm/{R:1}" appendQueryString="true" logRewrittenUrl="true" />
</rule>
但是,它从不将其放在/{R:1}
后面。它只是去/index.cfm
。我们需要实际获取引用变量,因为我们在 ColdFusion (10) 脚本中使用了它。我们想要的示例 url 重写:
从:http://www.my-site.com/this.is.a.test/another.test
至:http://www.my-site.com/index.cfm/this.is.a.test/another.test
任何人都知道为什么它不会这样做?(快速注意:执行正确的 URL 时可能会出现 ColdFusion 错误,但我认为这不会导致重写问题?)
请注意,当您在浏览器中尝试相同的操作(禁用规则)时,它确实有效 - 只是不适用于重写规则。使用重写规则,cgi.PATH_INFO
CF 中的变量返回空字符串。
此外,IIS 确实说它已经index.cfm/this.is.a.test/another.test
在日志中重写了 URL,这很奇怪。