Below is some code I added to my .htaccess code how can I add certain pages to be re-directed to https? (such as login.php & login.html)
Also, if the user types in www. they get a "untrusted connection" as the SSL is only valid without the www. How could I fix this?
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteCond %{REQUEST_URI} /login.html
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}