Skip to main content

How can I make my site open with HTTPS?

Your certificate is installed but the site still opens as insecure? Two changes make every visitor land on the secure address instead.

Written by Team

If you already have a SSL certificate but your site has insecure connection and still opens through http, do the following:

1. In the root folder > config.php > find the line starting with

define("SITE_SERVER"

2. Change http to https


3. In the .htaccess file (root directory), add redirect from http to https:

RewriteCond %{HTTPS} off
RewriteRule .* https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

Did this answer your question?