1

我们在 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_INFOCF 中的变量返回空字符串。

此外,IIS 确实说它已经index.cfm/this.is.a.test/another.test在日志中重写了 URL,这很奇怪。

4

2 回答 2

2

您应该添加条件以防网站托管图像、js、css 等。您也不想重写任何可能包含 CFM 的 URls。

这些是我们使用的条件:

<conditions>
    <add input="{SCRIPT_FILENAME}" matchType="IsFile" negate="true" />
    <add input="{SCRIPT_FILENAME}" matchType="IsDirectory" negate="true" />
    <add input="{PATH_INFO}" pattern="^.*(/index.cfm/).*$" negate="true" />
</conditions>
于 2013-07-10T16:07:28.717 回答
0

问题是我们昨天应用了新的更新 11 后需要重新做 Coldfusion 10 的配置工具。它现在正在工作。

于 2013-07-11T13:31:25.580 回答