Need to edit the .htaccess file and do something like:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301,NE]
(rest of file)
But, if you specifically start with https in the address bar it should keep using it. The first three lines should already be in the file. Just add the bottom two below them.