私はWPをIISサーバーのルートフォルダにインストールしました。これはかなりのpermalinksで動作します。web.configはサブフォルダのWordPress permalinksで動作しません
別のワードプレスが
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="WordPress1" 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>
<staticContent>
<clientCache cacheControlCustom="public" cacheControlMode="UseMaxAge" cacheControlMaxAge="365.00:00:00"/>
<remove fileExtension=".woff"/>
<remove fileExtension=".woff2"/>
<mimeMap fileExtension=".woff" mimeType="application/x-font-woff"/>
<mimeMap fileExtension=".woff2" mimeType="application/font-woff2"/>
</staticContent>
</system.webServer>
</configuration>
ただし、以下のweb.configファイルを使用しています/development
でインストールもあり、かなりのパーマリンクは
ホームページはこのしかし、作品サブフォルダにこのサイト上で作業していませんサブフォルダと通常のパーマリンクを選択したとき
なぜでしょうか?