IIS7.5 URL在索引页上重写问题

时间:2010-11-12 作者:Hasan Gürsoy

H、 我在IIS7上安装了wp。5机器。但是,当我的永久链接设置为line时,我出现了错误:/%year%/%monthnum%/%day%/%postname%/

问题是索引页(根页/)出现404错误(EDIT: error is in a wordpress page, not server default page). 但当permalink是默认值或/索引时,我不会得到404。php/%年%/%月%/%日%/%postname%/

可在此处查看网站:http://marmarabote.innovacube.com/

我还重写了web中的URL。类似配置:

<?xml version="1.0"?>
    <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>

1 个回复
结束

相关推荐

为什么‘月份和名称’固定链接格式在我的新WordPress站点(运行在IIS7上)不起作用?

我刚刚在Windows 2003服务器上创建了一个新的Wordpress站点(版本3.0.1),但“月和时间”永久链接格式不起作用。当我使用它时,它给出了一个404错误。所有其他标准permalink格式都可以正常工作。请告诉我是什么导致了这个问题?