To force the loading of a website when the request is without SSL (without https:// in the request) we need to create the file .htaccess in the root directory of the webiste and add this inside this file
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R,L]
Now we just save the file and the website should redirect us to our SSL website.
