我知道这可能是一个简单的问题,但我想从我的 URL 重写规则中排除一个文件。下面是我的 web.config 文件的重写部分(代码由其他人提供)。我想将一个名为 demo-download.php 的文件排除在其扩展名之外。(这导致我使用 $_POST 的一些 php 代码出现问题)。
<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>