用ColdFusion和IIS重写问题

时间:2013-07-10 14:07:20

标签: iis coldfusion rewrite

我们在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错误,但我不认为这会导致重写问题?)

请注意,当您在浏览器中尝试相同操作(禁用规则)时,它确实有效 - 只是没有重写规则。使用重写规则,CF中的cgi.PATH_INFO变量返回空字符串。

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

2 个答案:

答案 0 :(得分: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>

答案 1 :(得分:0)

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