How to redirect a site to https using htaccess

If you want to redirect your domain from HTTP to HTTPS, you can achieve this using   If you are not using Cloudflare or any proxy server, use the below code in your .htaccess file RewriteCond %{HTTP_HOST} !^www.(.*)$ [NC] RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L] RewriteCond %{HTTPS} =off RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R=301,L] If you are using Cloudflare ...

Install SSL Certificate in Cpanel

29. March 2016 SSL 0
Note: If the SSL is purchased from hostingahead.com you can create a ticket and we will do the installation for you. To purchase an SSL Certificate Go here Generate CSR: cPanel 11 Step 1: Generate a Private Key Login to cPanel. Click SSL/TLS Manager > Private Keys (KEY). Scroll down near the bottom of the ...

How to install ssl certificate on centos

13. January 2016 SSL 0
SSL Certificate A SSL certificate is a way to encrypt a site’s information and create a more secure connection. In order to install an SSL certificate you have to follow main four steps: 1) Create CSR and Private Key 2) Purchase an SSL certificate from a provider ( you can purchase from here ) 3) ...