I have ssl enabled on whole website, but I need to force all pages except login.php and register.php to http://
So basically I only need login.php and register.php pages to be https:// protocol-ed.
Right now I have script that makes login.php page https:// encrypted , but I don't understand how to add register.php to this code
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
# Turn SSL on for payments
RewriteCond %{HTTPS} off
RewriteCond %{SCRIPT_FILENAME} \/login\.php [NC]
RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R=301,L]
# Turn SSL off everything but payments
RewriteCond %{HTTPS} on
RewriteCond %{SCRIPT_FILENAME} !\/login\.php [NC]
RewriteRule ^(.*)$ http://%{HTTP_HOST}/$1 [R=301,L]
Any ideas on how to edi/make this code to set login.php and register.php pages to https:// and all others to http://
Thank you