我有,我想用来托管2级不同的网站(包括端口80)1台 IIS服务器。
我一直在试图很多不同的组合(包括重定向)和每一次的东西被打破(重定向环路,404,根本就没有工作,等...)
我想我需要的规则是这样的东西:
- match any URL
- condition 1: match {HTTP_HOST} to my site URL
- condition 2: discard if {REQUEST_URI} is present
- action: rewrite URL to /dir1/index.html
(repeat for site 2)
这里的问题似乎是,条件2是不正确的(我应该怎么用,以配合没有 {REQUEST_URI}
下面是完整的XML:
<rewrite>
<rules>
<rule name="RuleForSite1" stopProcessing="true">
<match url="(.*)" ignoreCase="false" />
<conditions>
<add input="{HTTP_HOST}" pattern="^www\.mysite1\.com$" />
<add input="{REQUEST_URI}" pattern=".+" negate="true" />
</conditions>
<action type="Rewrite" url="dir1/index.html" />
</rule>
<rule name="RuleForSite2" stopProcessing="true">
<match url="(.*)" ignoreCase="false" />
<conditions>
<add input="{HTTP_HOST}" pattern="^www\.mysite2\.com$" />
<add input="{REQUEST_URI}" pattern=".+" negate="true" />
</conditions>
<action type="Rewrite" url="dir2/index.html" />
</rule>
</rules>
</rewrite>