これはおそらく簡単な質問だと思いますが、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>