Microsoft-IIS/7.5 服务器上的 Wordpress:只有主页有效

Wordpress on Microsoft-IIS/7.5 Server: Only Home Page works

我最近将一个 Wordpress 站点从 Apache Server 移动到 Microsoft-IIS/7.5 Server,问题是,当移动到 IIS Server 时,只有主页可以工作。当我转到存档页面或单页时,它 returns 404 错误。我认为是因为 IIS 不理解 htaccess 中的 <IfModule mod_rewrite.c> rewrite wordpress)

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php [L]
</IfModule>

# END WordPress

所以我尝试将上面的 htaccess 转换为 web.cofig,如下所示:

<?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>

但是它returns 500 错误。有人知道怎么解决吗?

.htaccess 文件不适用于 IIS Server.Instead of .htaccess 你需要写 web.coonfig 文件你可以获得更多帮助 here

我意识到我必须安装 IIS 模块才能 URL 重写。 http://www.iis.net/download/URLRewrite