我为我的网站提交了号码域名。我需要将所有域名(例如 www.siteName.net , www.siteName.ir , www.siteName.co 重定向到 www.siteName.com 通过IIS。
这可能吗?
如果不可能当前的解决方案是什么?
答案 0 :(得分:1)
这条规则有可能:
<rule name="all domains www.siteName* to www.siteName.com" stopProcessing="true">
<match url="(.*)" />
<conditions logicalGrouping="MatchAll">
<add input="{HTTP_HOST}" pattern="^www.siteName" ignoreCase="true" />
<add input="{HTTP_HOST}" pattern="^www.siteName.com" negate="true" ignoreCase="true" />
</conditions>
<action type="Redirect" url="http://www.siteName.com/{R:1}" />
</rule>
它会将域www.siteName *的所有内容重定向到www.siteName.com