Add redirect to htaccess
If the site does not switch to https after installing the certificate, you can force the domain towards https.
Read more about this: Read more about our SSL here
Create a file or use an existing one and name the file as .htaccess
In that file, enter the following code:RewriteEngine On
RewriteCond% {HTTPS} off
RewriteRule ^ (. *) $ Https: //% {HTTP_HOST}% {REQUEST_URI} [L, R = 301]
Now the site will switch to https.
Note! For this to work, you must have an SSL installed on your domain!