GlowingSword's KB
Перенаправление с главной страницы на поддиректорию¶
<system.webServer>
<rewrite>
<rules>
<rule name="Redirect" stopProcessing="true">
<match url="^(.*)$" ignoreCase="false" />
<conditions logicalGrouping="MatchAll">
<add input="{HTTP_HOST}" pattern="^www\.mysite\.ru$" />
</conditions>
<action type="Redirect" url="http://mysite.ru/forum/" redirectType="Permanent" />
</rule>
</rules>
</rewrite>
</system.webServer>