从主应用程序到子应用程序的IIS URL重定向

时间:2018-11-07 17:45:23

标签: php wordpress iis iis-7 iis-7.5

我正在使用Windows Server 2008 + IIS。我需要如下规则:

www.mysite.com-> wwww.mysite.com/go

除了:www.mysite.com/come将运行 come 应用程序

执行是在主应用程序(.NET)中运行的2个应用程序(PHP wordpress)

这是我尝试过但出错的规则

<rewrite>
    <rules>
        <rule name="go" stopProcessing="true">
            <match url="^$" />
            <action type="Redirect" url="wwww.mysite.com/go" />
        </rule>
        <rule name="come" stopProcessing="true">
            <match url="^come/$" />
            <action type="Rewrite" url="index.php" appendQueryString="true" />
        </rule>
    </rules>
</rewrite>

0 个答案:

没有答案