Articles on: Domain names

How can I activate SSL for my website?

Good news, our system automatically creates or renews the needed SSL certificate(s) for your website to ensure your website is always protected. The only thing you need to do is redirecting the unprotected traffic to the protected version of your website.

Therefore you need to create a .htaccess file if you don't have one in the root folder for your website (in most cases public_html) with at least the following content:
<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{HTTPS} off
    RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L]
</IfModule>

Updated on: 04/11/2019

Was this article helpful?

Share your feedback

Cancel

Thank you!