how to force HTTPS by creating a 301 redirect in the domain’s virtual host. code example
Example: redirect http to https all domains vhost
RewriteEngine On
RewriteRule ^(.*)$ https://%{HTTP_HOST}$1 [R=301,L]
RewriteEngine On
RewriteRule ^(.*)$ https://%{HTTP_HOST}$1 [R=301,L]