SSL Security
How can I install a SSL?
After you bought and configured your web server to use ssl certificat, go to ./core/settings.php file, find $site_url, replace your site url to https version.
How can I redirect (force) my website to use a SSL version?
Open .htaccess file, under “RewriteEngine On”, copy and paste the code below:
RewriteCond %{HTTPS} off
RewriteCond %{HTTP:X-Forwarded-Proto} !https
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]