[aspnet] Redirect non-www to www trên asp.net web.config

Hướng dẫn cấu hình rewrite, redirect non-www to www trên asp.net web.config

Mầu rewrite như sau:

<rule name="Redirect to WWW" enabled="true">
   <match url="(.*)" />
      <conditions>
         <add input="{HTTP_HOST}" negate="true" pattern="^www\.([.a-zA-Z0-9]+)$" />
      </conditions>
   <action type="Redirect" url="http://www.{HTTP_HOST}/{R:0}" appendQueryString="true" redirectType="Permanent" />
</rule>

 Chúc các bạn thành công.

Bình luận