Wordpress - IIS 7.5 - URL重写 - OWA和RWW 403.18禁止

时间:2013-09-30 19:08:21

标签: wordpress iis url-rewriting

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

此规则位于我的wwwroot文件夹中,它修复了我的网址,但它破坏了我的OWA和RWW网站。

如何向此规则添加例外或条件,以便忽略特定地址?我正在尝试处理域名 remote.mydomain.com

根据上述规则 remote.mydomain.com ,将返回403错误。

1 个答案:

答案 0 :(得分:1)

您只需在规则中添加条件:

<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" />
        <add input="{HTTP_HOST}" pattern="^remote\.mydomain\.com$" negate="true" />
    </conditions>
    <action type="Rewrite" url="index.php" />
</rule>

条件

<add input="{HTTP_HOST}" pattern="^remote\.mydomain\.com$" negate="true" />` 
如果请求的主机正好是remote.mydomain.com

将阻止您的规则触发