View Single Post
Tuổi 01-07-2022, 10:35 AM   #1
hoctinhoc
Guest
 
Trả Lời: n/a
Hướng dẫn redirect www to non-www
How to redirect www to none www

Hướng dẫn cấu hính chuyển hướng từ www qua không có www


Cách 1: Trong web.conf bạn thêm dòng sau


Mã:

<rewrite>
<rules>
  <rule name="Redirect to www" stopProcessing="true">
      <match url="(.*)" />
      <conditions trackAllCaptures="false">
        <add input="{HTTP_HOST}" pattern="^domain.com$" />
      </conditions>
      <action type="Redirect" url="{MapProtocol:{HTTPS}}://www.domain.com/{R:1}" />
  </rule>
</rules>
</rewrite>
Cách 2:


Tham khảo: https://www.namecheap.com/support/kn...http-to-https/


https://qawithexperts.com/article/as...-vice-vers/342


  Trả lời ngay kèm theo trích dẫn này