Ssl
Secure / SSL port 443
.htaccess code to force redirect all port 80 (web requests ) to go through SSL port 443
RewriteCond %{SERVER_PORT} !^443$
RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R=301,L]
For this to work correctly, you need to have purchased and have installed an SSL certificate.