1
使用URL重寫,我們有很多,其採取的形式URL重寫 - 刪除URL如果結尾匹配特定字符串
/something/else/index.cfm
/this/that/index.cfm
我希望做的是去除從這些例子中,/index.cfm
舊網址的
任何想法?
謝謝
使用URL重寫,我們有很多,其採取的形式URL重寫 - 刪除URL如果結尾匹配特定字符串
/something/else/index.cfm
/this/that/index.cfm
我希望做的是去除從這些例子中,/index.cfm
舊網址的
任何想法?
謝謝
<rule name="Remove Trailing Index.cfm" enabled="true">
<match url="^(.*)/index.cfm" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false">
<add input="{R:1}" pattern="category" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Redirect" url="/{R:1}" />
</rule>