Web配置文件上的重定向问题

时间:2013-03-07 06:06:43

标签: wordpress redirect url-rewriting

请检查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>

1 个答案:

答案 0 :(得分:0)

不确定是否导致问题,但Wordpress的默认重写规则不包括重写操作中的/{R:0}部分。通常是:

<action type="Rewrite" url="index.php" />