Another of those self-reminder posts, here’s how to redirect all http requests to https:
Put the following in the .htaccess file:
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
Taken from this SO question
Recent Comments