Question
How do I force HTTPS instead of HTTP
Answer
You can achieve this easily via editing your site's .htaccess file. Here's how to do this:
RewriteEngine OnOf course, you will want to substitute your domain for example.com
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://example.com/$1 [R=301,L]
Still need help?
If you need further assistance than this entry provided, please, do open up a support ticket, we are here to help you out