Our SSL certificates should be generated automatically once your DNS has propagated and your site can be viewed on your domain. However, it can take up to 48 hours before the certificate is created, and you can use https on your pages.
If the certificate is not generated automatically, you can start the process manually by first going to cPanel via your control panel and then selecting “SSL/TLS Certificates”. Check all the boxes and click “Run AutoSSL”. Then click the “Let’s Encrypt certificate” button and accept the terms before finishing by clicking “Continue” again.
If everything turns green, your certificate is in place, and you can now have your site run on https.
Force your site to use HTTPS instead of HTTP
For example, if you are using WordPress, we recommend this plugin to make your site run on https: https://wordpress.org/plugins/really-simple-ssl/
If you are not using WordPress, you can use this script in your .htaccess file to force your site to use https:
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^.*$ https://%{SERVER_NAME}%{REQUEST_URI} [R,L]
Note that we do not provide support for editing .htaccess, and always make a backup of your .htaccess file before making any changes.