我正在使用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>