How do I redirect all http to https?
To make your website fully secure you will want to make sure they are using the https version.
To accomplish this add this to your .htaccess file:
RewriteEngine On RewriteCond %{HTTPS} off RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L]