Free SSL has been installed on all websites on our Brisbane Windows IIS server – by arrangement between Let’s Encrypt, Plesk and our host.

Provide more security on your website.
Take advantage of the free SSL certificate that’s now available with your website on our Brisbane Windows IIS host. You may need your web designer to help,

  1. To show https on only certain pages where customers enter their details, edit the links to those pages to put https in the URL of those page links.
  2. To force browsers to open the whole website showing https and the padlock icon:
    Insert the following in your web.config file just before the lines:    </system.webServer>
    </configuration>


     <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