1

次のような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 ページが見つかりません。

4

1 に答える 1

1

以下に表示されている試合の URL を変更してください。

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <system.webServer>
<rewrite>
    <rules>
        <rule name="Main Rule" stopProcessing="true">
            <match url="^(.*)/$" />
            <conditions logicalGrouping="MatchAll">
                <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>
于 2013-11-05T08:30:27.277 に答える