Now that HTTPs is a major requirement, you will need to enforce this on your site. You can force SSL or HTTPs very easily via the file .htaccess.
To force SSL, you will need to make sure Mod_Rewrite is enabled on your server. Edit your .htaccess file and add the code below.
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
Note
If your .htaccess file had already the first line i.e. RewriteEngine On
, do not add it again.