How to Direct http to https
From ReduxWiki
Making use of an .htaccess file:
RewriteEngine On
RewriteCond %{SERVER_PORT} !443
RewriteRule (.*) https://subdomain.domain.com/ [R]
Categories: Security | SSL | Apache | Domains
Making use of an .htaccess file:
RewriteEngine On
RewriteCond %{SERVER_PORT} !443
RewriteRule (.*) https://subdomain.domain.com/ [R]
Categories: Security | SSL | Apache | Domains