[.htaccess]: redirect HTTP to hTTPS with non WWW - dejurin/blog GitHub Wiki
RewriteEngine On
RewriteCond %{HTTP:X-Forwarded-Proto} ^http$ [OR]
RewriteCond %{HTTP_HOST} ^www. [NC]
RewriteCond %{SERVER_NAME} ^(www.)?(.*)$ [NC]
RewriteRule ^/?(.*)$ https://%2/$1 [L,R=301]