Redirect Traffic to SSL (https)

Redirect traffic

If you have already purchased and configured a SSL certificate for your website and want to redirect all traffic to it https://www.example.com, you will need to follow the steps below in order to do so:

WordPress SSL Plugin:

If you are using WordPress you can use a plugin like: Really Simple SSL: 

The above plugin will help you use your SSL and configure your WordPress automatic redirects.

For other applications, please check with your application vendor if they have a ready plugin/module that you can use to use SSL and setup automatic redirects.

Other ways to handle this are outlined based on your control panel below:

cPanel (via .htaccess):

  1. Login to your cPanel.

  1. Click on the File Manager icon and then enable Show Hidden Files (dotfiles), from the Document Root drop-down tab you need to choose the domain you want to redirect to SSL.

  1. Find the .htaccess file and click Edit.

  1. Add the following lines of code in the .htaccess:

RewriteEngine On  RewriteCond %{SERVER\_PORT} 80  RewriteRule ^(.*)$ https://www.example.com/$1 [R,L]

Change https://www.example.com with your actual domain-name.

  1. Click Save Changes.

Now when you type your website in the browser you will be redirect to the SSL link https://www.example.com.

SolidCP /WebsitePanel (via web.config method):

  1. Login to your SolidCP /WebsitePanel.

  1. Click on the File Manager icon.

  1. Choose the website for which you want to redirect the traffic to SSL.

  1. Click on the wwwroot folder.

  1. Edit the web.config file and copy/paste the following code between the and tags in your web.config file in your website root directory:

`

`

  1. Click Save.

Now when you type your website in the browser you will be redirect to the SSL link https://www.example.com.