我有http://xyz.it/page1到http://xyz.it/pageN,我需要将所有网页重定向到http://bar.it/foo,我认为我已经用这条规则解决了这个问题:
<rule name="from-xyz-to-bar" stopProcessing="true">
<match url=".*" />
<conditions logicalGrouping="MatchAny">
<add input="{HTTP_HOST}" pattern="^xyz\.it$" />
</conditions>
<action type="Redirect" url="http://bar.it/foo" appendQueryString="false" redirectType="Permanent" />
</rule>
但它不起作用。我的规则是将http://xyz.it/page1重定向到http://bar.it/page1而我不明白我错在哪里。
请帮忙!
答案 0 :(得分:2)
<rule name="from-xyz-to-bar" stopProcessing="true">
<match url="^$" />
<action type="Redirect" url="http://bar.it/foo" />
</rule>