在我的实际网站上,我正在使用web.config文件,没有任何问题。但是,在运行CF 11开发人员版本的本地服务器上,它没有。我收到404错误。 CF 11 dev版似乎使用Tomcat 7.0.52
我试图让http://tuckey.org/urlrewrite/工作,但没有运气。无法访问CF管理员 我是在正确的轨道上还是离开了?
感谢您的帮助!
web.config文件:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Rewrite Articles">
<match url="^([^/]+)/?$" />
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="index.cfm?alias={R:1}" />
</rule>
</rules>
</rewrite>
<directoryBrowse enabled="false" />
<urlCompression doStaticCompression="true" doDynamicCompression="true" />
<httpErrors errorMode="Detailed" />
</system.webServer>
</configuration>