How to Enable SSL and HTTPS for Your Website

2017-11-12|Views:4217

All our shared and reseller hosting packages include a free SSL certificate which is automatically installed within 48 hours after a new account is activated.

To find out whether you have SSL installed, open your website with https:// instead of http:// (default is http if you do not specify https)

If you have a secure certificate (SSL) on your website, you can automatically redirect visitors to the secured (HTTPS) version of your website to make sure their information is protected.

<em>How you redirect traffic depends on the type of hosting and CMS you have.</em>

WordPress

If you use wordpress, you need to set both Site URL and Home URLs options in your wordpress Settings to use https:// instead of http://

That will force Wordpress to use https for your website.

CPanel 80 and up

1. Using cPanel Domains Interface

Login to your CPanel account
Go to Domains
Locate your domain and Turn on the Switch button under 'Force HTTPS Redirect' column.
Your domain should redirect to https automatically.

If it doesn't work, continue to the steps below to do it manually.

2. Using .htaccess file

Cpanel accounts use .htaccess files to handle redirection.

You can find your .htaccess file in you Control Panel>>File Manager>>Public_html

If your .htaccess file is hidden, you may need to show all hidden files.

To show hidden files in File Manager, click on the "Settings" button with the gear-like icon on your top-right corner of the page and then check the "Show Hidden Files (dotfiles) " option. You may disable this after you finish modifying the file.

Note: If you need to create a .htaccess file, you can go to your Control Panel >> File Manager >> "+ File"/"Create File" button at the top most part of the page.

Next, click on the .htaccess file and then click on "Edit" on the top part of the File Manager Page to edit it.

Using the following code in your .htaccess file automatically redirects visitors to the HTTPS version of your site:


RewriteEngine On
RewriteCond %{HTTPS} !=on 
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

If you have an existing .htaccess file:

Do not duplicate RewriteEngine On

Make sure the lines beginning RewriteCond and RewriteRule immediately follow the already-existing RewriteEngine On.


What are you looking for?