次のようなwordpress設定から2つのファイルweb.configがあります。
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="wordpress" patternSyntax="Wildcard">
<match url="*"/>
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true"/>
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true"/>
</conditions>
<action type="Rewrite" url="index.php"/>
</rule></rules>
</rewrite>
</system.webServer>
</configuration>
フォルダーのワードプレスで、そのルールが実行されていない場合のように、いくつかの例外を追加したいと思います。
私の場合、設定->パーマネントリンク->投稿名で2つのワードプレスをインストールし、1つはルートディレクトリ(http://example.com/)に、もう1つは /wordpress(http://example.com/wordpress)ディレクトリにインストールしました.
2 番目のワードプレス (/wordpress) web.config ルール name="wordpress2" を変更すると機能しますが、サンプル ページ ( http://example.com/wordpress/sample-page ) をページ リダイレクトよりも表示したい場合404 ページが見つかりません。