我正在尝试配置我的 web.config 以将所有请求重定向到http://sub.sub.domain.com到http://sub.domain.com。我的项目托管在 Windows Azure 的云服务中。
这是我尝试过的(但不起作用)。
<system.webServer>
<rewrite>
<rules>
<rule name="Redirect sub.sub.domain.com to sub.domain.com">
<match url="(.*)" />
<conditions>
<add input="{HTTP_HOST}"
pattern="^sub\.sub\.domain\.com$"
negate="true" />
</conditions>
<action type="Redirect"
url="http://sub.domain.com/{R:1}"
redirectType="Permanent" />
</rule>
</rules>
</rewrite>
</system.webServer>
任何人都可以帮忙吗?
非常感谢!