我知道這可能是一個簡單的問題,但我想從我的URL重寫規則中排除一個文件。下面是我的web.config文件的重寫部分(代碼由其他人提供)。我想排除一個名爲demo-download.php的文件,使它的擴展名被刪除。 (這是導致問題,我有一些PHP代碼使用$ _POST)。URL Rewrite排除特定網址
<rewrite>
<rules>
<rule name="extensionless" stopProcessing="true">
<match url="(.*)\.php$" />
<action type="Redirect" url="{R:1}" redirectType="Permanent" />
</rule>
<rule name="removeextension" enabled="true">
<match url=".*" negate="false" />
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
<add input="{URL}" pattern="(.*)\.(.*)" negate="true" />
</conditions>
<action type="Rewrite" url="{R:0}.php" />
</rule>
</rules>
</rewrite>