02 Mayıs 2024 19:09

Anasayfa

undefined...

IIS üzerinde bir alan adının http trafiğini https olarak yönlendirmek için aşağıdaki IIS'E ait URLWRITE modulünü kurduktan sonra web.config dosyasına aşağıdaki rule yönlendirmesini eklememiz ve IIS servisini yeniden başlatmamaız gerekiyor.

https://www.microsoft.com/en-us/download/details.aspx?id=47337 

 

 

<system.webServer>
..
..
..
..
<rewrite>

<rules>


<rule name="https" enabled="true" patternSyntax="Wildcard" stopProcessing="true">
<match url="*" negate="false" />
<conditions logicalGrouping="MatchAny">
<add input="{HTTPS}" pattern="off" />
</conditions>
<action type="Redirect" url="https://{HTTP_HOST}{REQUEST_URI}" redirectType="Permanent" />
</rule>


</rules>
</rewrite>
</system.webServer>
 

Makdos Bilişim Teknolojileri 2015 - 2022