มีสองสามวิธีที่คุณสามารถทำได้ แต่ถ้าคุณติดตั้งโมดูลการเขียนซ้ำURLมันค่อนข้างง่ายและเป็นวิธีที่ดีที่จะทำ
คุณสามารถวางการกำหนดค่าด้านล่างลงในไฟล์ web.config ของไซต์ของคุณ(อยู่ใน<system.webServer></system.webServer>
ส่วน)
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="https redirect">
<match url="(.*)" ignoreCase="false" />
<conditions>
<add input="{HTTPS}" pattern="off" ignoreCase="false" />
</conditions>
<action type="Redirect" redirectType="Found" url="https://{HTTP_HOST}{REQUEST_URI}" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
หรือคุณสามารถใช้ UI ของ IIS เพื่อสร้างกฎใหม่เช่นในภาพหน้าจอด้านล่าง