0

请检查 sfveinaesthetics.com/index.php 打开但http://sfveinaesthetics.com/不.. 它是 iis7 服务器中的 wordpress 站点。

内页工作http://sfveinaesthetics.com/about-us/很好..

请尽快给我解决方案。网络配置就像

<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 回答