私たちの 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>