我也在Stackoverflow上问过这个问题,但我认为这会是一个更好的地方。
我们在 IIS7.5 上有以下重写规则:
<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 错误,但我认为这不会导致重写问题?)
请注意,当您在浏览器中尝试相同的操作(禁用规则)时,它确实有效 - 只是不适用于重写规则。使用重写规则,CF 中的 cgi.PATH_INFO 变量返回空字符串。
此外,IIS 确实说它已在日志中将 URL 重写为 index.cfm/this.is.a.test/another.test,这很奇怪。使用 301 重定向而不是重写使其工作得非常好(没有更改任何有关规则的内容,仅重定向操作类型)。这对我来说非常奇怪,因为我希望重写与重定向几乎相同,只是重写是内部的不同。
我们的服务器上也有 Helicon Ape,所以如果您在 mod_rewrite 而不是 IIS 模块中有解决方案,请提出建议。
问题是我们昨天应用了新的更新 11 后需要重新做 Coldfusion 10 的配置工具。它现在正在工作。