example.com を www.example.com に、example.de を www.example.de にリダイレクトしたい
<rule name="CanonicalHostNameRuleCOM" stopProcessing="true">
<match url="(.*)" />
<conditions>
<add input="{HTTP_HOST}" negate="false" pattern="^example\.com$" />
</conditions>
<action type="Redirect" url="http://www.example.com/{R:1}" redirectType="Permanent" />
</rule>
<rule name="CanonicalHostNameRuleDE" stopProcessing="true">
<match url="(.*)" />
<conditions>
<add input="{HTTP_HOST}" negate="false" pattern="^example\.de$" />
</conditions>
<action type="Redirect" url="http://www.example.de/{R:1}" redirectType="Permanent" />
</rule>