Add redirect to webconfig

 
If the site does not switch to https after installing the certificate, you can help control the domain towards https.

Read more about this: Read more about our SSL here

The code should be in webconfig between the <system.webServer> and </system.webServer> tags

In that file, enter the following code:

<Rewrite>
   <Rules>
     <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 = "SeeOther" />
     </ Rule>
   </ Rules>
</ Rewrite>


Now the site will switch to https.

Note! For this to work, you must have an SSL installed on your domain!
Was this answer helpful? 0 Users Found This Useful

Related Articles

Installera SSL på Webbhotell (Linux)

Logga in på din kontrollpanelVälj den domänen det gäller om du har fler på ditt kontoVälj SSL...

Alpha SSL - Hämta ut CSR (Ballou Webbhotell .NET)

Vid beställning av Alpha SSL ingår ingen support. Logga in på kontrollpanelen Välj Websites...

Alpha SSL - Installera certifikat (Ballou Webbhotell .NET)

Vid beställning av Alpha SSL ingår ingen support. Logga in på kontrollpanelen Välj Websites...

Alpha SSL - Installera certifikat (Ballou Webbhotell Linux)

Vid beställning av Alpha SSL ingår ingen support. Logga in på kontrollpanelen Klicka på domänen...

Let's Encrypt vs andra SSL

Skillnaden mellan de dessa är: Let's Encrypt certifikat är endast giltiga i 90 dagar och måste...