You can force all visitors to your site to be using HTTPS by adding the below code to the web.config file in your wwwroot:
<system.webServer>
<rewrite>
<rules>
<clear />
<rule name="Redirect to https" stopProcessing="true">
<match url=".*" />
<conditions>
<add input="{HTTPS}" pattern="off" ignoreCase="true" />
</conditions>
<action type="Redirect" url="https://{HTTP_HOST}{REQUEST_URI}" redirectType="Permanent" appendQueryString="false" />
</rule>
</rules>
</rewrite>
</system.webServer>
Important Notes:
- You will need an SSL certificate installed on your website for this to work.
- If you are unsure how to complete the above please open a support ticket and one of our technicians will happily do it for you.