Skip to content

Instantly share code, notes, and snippets.

@shalakolee
Created April 25, 2017 23:17
Show Gist options
  • Save shalakolee/4c0b18ab29b2b2d0086b24a4632647e0 to your computer and use it in GitHub Desktop.
Save shalakolee/4c0b18ab29b2b2d0086b24a4632647e0 to your computer and use it in GitHub Desktop.
IIS HTTPS Redirect
<system.webServer>
<rewrite>
<rules>
<!-- http:// to https:// rule -->
<!--<rule name="HTTP to HTTPS redirect" stopProcessing="true">
<match url="(.*)" />
<conditions>
<add input="{HTTPS}" pattern="off" ignoreCase="true" />
</conditions>
<action type="Redirect" redirectType="Found" url="https://{HTTP_HOST}/{R:1}" />
</rule>-->
</rules>
</rewrite>
</system.webServer>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment