Security
8 views
SSL Certificate Setup
Learn how to enable free SSL certificates on your hosting account.
Enabling SSL on Your Website
SSL certificates encrypt the connection between your visitors and your website, essential for security and SEO.
Free SSL with Let's Encrypt
All hosting accounts include free SSL certificates through Let's Encrypt.
How to Enable SSL
- Log in to your control panel
- Navigate to the SSL/TLS section
- Click "Issue Certificate" for your domain
- Wait for the certificate to be issued (usually within minutes)
Forcing HTTPS
After enabling SSL, you can force all traffic to use HTTPS by adding the following to your .htaccess file:
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] Was this article helpful?