If your server runs Apache, add this code to your .htaccess file to force all pages to load over HTTPS:

# BEGIN Force HTTPS
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
# END Force HTTPS