Skip to content

Instantly share code, notes, and snippets.

@tkarpinski
Created January 16, 2012 14:43
Show Gist options
  • Star 7 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save tkarpinski/1621178 to your computer and use it in GitHub Desktop.
Save tkarpinski/1621178 to your computer and use it in GitHub Desktop.
webconfig for http to https redirect
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<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>
</configuration>
@tkarpinski
Copy link
Author

install the url rewrite module for IIS and place this in your wwwroot

http://www.iis.net/download/urlrewrite

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment