windows plesk 12.5 http to https webconfig üzerinden yönlendirme

Merhaba

Windows Plesk 12.5 üzerinde http den https ‘e webconfig üzerinden yönlendirme kodu aşağıdaki gibidir.

<?xml version=”1.0″ encoding=”UTF-8″?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name=”http to https” stopProcessing=”true”>
<match url=”(.*)” />
<conditions>
<add input=”{HTTPS}” pattern=”^OFF$” />
</conditions>
<action type=”Redirect” url=”https://{HTTP_HOST}/{R:1}” redirectType=”Temporary” />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>

Bir cevap yazın