Setting Up And Redirecting To https (SSL)

Table of Contents

We have AutoSSL on cPanel, so you don’t need to purchase any SSL certificates.

Our cron job runs AutoSSL every hour and sets up and renews SSL for you, but you can also do this manually.

Click “SSL/TLS Status” under “Security” in your cPanel.

Click “Run AutoSSL”. Wait 2-3 minutes for it to run, and another 2-3 minutes for the certificate to load.

After 10 minutes, if SSL is still not working, try clearing your browser’s cache or contacting support for help.

Force Redirect to https #

If you want your domains to be automatically redirected to https, go to File Manager and click Settings (in the top right corner). Check “Show Hidden Files (dotfiles).

Click the “public_html” folder and find the file called “.htaccess”.

Paste these lines in the file:

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

This will automatically redirect all your domains to https.