Frequently Asked Questions

How do I redirect visitors to https:// and not http://
Last Updated 6 years ago
If you have just had a SSL/TLS certificate installed and you want to ensure all old links are currently redirected to your new HTTPS:// URL you need to add the following snippet to your .htaccess file:

RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{SERVER_NAME}/$1 [R=301,L]

Please Wait!

Please wait... it will take a second!