在我们的 web.config 文件中,我们控制 6 个不同的国际域。
我们如何使用 1 条规则执行以下操作:
重定向
- www.1of6Domains.com/index.htm
- www.1of6Domains.com/index.html
- www.1of6Domains.com/default.asp
- www.1of6Domains.com/default.aspx
至
- www.1of6Domains.com
像这样的东西?
<rule name="Canonical Redirect" enabled="true" stopProcessing="true">
<match url="(.*)/(index.html|index.htm|default.asp|default.aspx)" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false" />
<action type="Redirect" url="{R:1}" />
</rule>