次のweb.configコードを使用して、URLの「index.php」部分を削除できることを理解しています。
<rewrite>
<rules>
<rule name="Rule" stopProcessing="true">
<match url="^(.*)$" ignoreCase="false" />
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
<add input="{URL}" pattern="^/favicon.ico$" ignoreCase="false" negate="true" />
</conditions>
<action type="Rewrite" url="index.php/{R:1}" appendQueryString="true" />
</rule>
</rules>
</rewrite>
問題は、CIがサブディレクトリ(mydomain.com/codeigniter)にインストールされていて、web.configファイルを理解するのに問題があることです。
サブディレクトリで機能するようにこれを変更する方法を知っていますか?