Install your SSL certificate easily with this guide. CPanel, Plesk, and manual server installation for HTTPS setup.
Installing an SSL certificate is easier than you think! Just follow these steps to secure your website.
Installation Steps:
1. Purchase or Get Free SSL
-
Buy from providers like Certum, RapidSSL
-
Or use Let's Encrypt for a free option
2. Generate a CSR
-
CPanel → SSL/TLS → Generate CSR
-
Or use OpenSSL via CLI
3. Receive Your Certificate Files
-
Download
.crt
,ca-bundle
, andprivate key
from your provider
4. Install the Certificate
CPanel:
SSL/TLS → Install → Upload CRT + Private Key + CA-Bundle
Plesk:
Websites → SSL Certificates → Upload
Manual (Apache/Nginx):
Upload files to server and edit config files
5. Redirect to HTTPS
Add this to your .htaccess
file:
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]