WebConfig dosyasına aşağıdaki satırları eklememiz yeterli olacaktır.
<system.webserver>
<rewrite>
<rules>
<clear>
<rule name="redirect to www" enabled="true">
<match url="(.*)">
<conditions>
<add input="{http_host}" negate="true" pattern="^www\.([.a-za-z0-9]+)$">
</add></conditions>
<action type="redirect" url="http://www.{http_host}/{r:0}" appendquerystring="true" redirecttype="permanent">
</action></match></rule>
</clear></rules>
</rewrite>
</system.webserver>