How To Enable SSL

Posted on 2024-06-19

If you want to force it you will need to add suitable .htaccess code to fit for your needs. You can try this one and should work good:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]

Found this article helpful?

[ 1 Out of 2 Found Helpful ]

Still no luck? we can help!

Submit a ticket and we’ll get back to you as soon as possible.