Options +FollowSymLinks
RewriteEngine On
# Turn SSL off for everything except login.php (register.php)
RewriteCond %{HTTPS} on
RewriteCond %{SCRIPT_FILENAME} !/login.php [NC]
RewriteRule ^(.*)$ http://%{HTTP_HOST}/$1 [R=301,L]
The code above is used to turn SSL (https://) off for every page except login.php. How can I add register.php page, so I will have https:// protocol enabled on both login.php and register.php pages? I tried duplicating this line
RewriteCond %{SCRIPT_FILENAME} !/login.php [NC]
**RewriteCond %{SCRIPT_FILENAME} !/register.php [NC]**
But this doesn't work, any ideas?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…