快速提问 -
目前我的网址如下所示:index.cfm/camp/another-test
我希望他们看起来像这样:camp/another-test
我可以用我的 .htaccess 在 apache 上做到这一点,但我需要能够在 iis7 上用 web.config 做到这一点。到目前为止,这是我的重写:
<rewrite>
<rules>
<rule name="Remove index.cfm" enabled="true">
<match url="^(.*)$" ignoreCase="true" />
<conditions logicalGrouping="MatchAll">
<add input="{SCRIPT_NAME}" negate="true" pattern="^/(assets|files|miscellaneous|robots.txt|favicon.ico|sitemap.xml|index.cfm)($|/.*$)" />
</conditions>
<action type="Rewrite" url="/index.cfm/{R:1}" />
</rule>
</rules>
</rewrite>
谢谢您的帮助!