Windows sunucular için HTTP’yi HTTPS’ye Otomatik Yönlendirme


httpdocs klasörü içinde bulunan web.config dosyasının yapısal düzenine aşağıdaki kodları uygun şekilde ekleyiniz. Eğer web.config dosyası mevcut değilse aynı isimle oluşturabilirsiniz.

<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="HTTPyi HTTPSye Yonlendirme" stopProcessing="true"> 
<match url="(.*)" /> 
<conditions> 
<add input="{HTTPS}" pattern="off" ignoreCase="true" />
</conditions> 
<action type="Redirect" redirectType="Permanent" url="https://{HTTP_HOST}/{R:1}" />
</rule>   
</rules>
</rewrite>
</system.webServer>
</configuration>

Bu Makaleyi Paylaş

Yorumlar (0)

Yorum Bırak