0

sfveinaesthetics.com/index.php が開いていることを確認してください

内側のページはhttp://sfveinaesthetics.com/about-us/うまくいきます..

できるだけ早く解決策を入手してください.. Web構成は次のようなものです

<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/{R:0}" />
            </rule>
        </rules>
    </rewrite>
</system.webServer>

4

1 に答える 1

0

それが問題の原因かどうかはわかりませんが、Wordpress のデフォルトの書き換えルールには/{R:0}、書き換えアクションの部分が含まれていません。通常は次のとおりです。

<action type="Rewrite" url="index.php" />
于 2013-03-07T12:07:56.237 に答える