Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
809 views
in Technique[技术] by (71.8m points)

.htaccess - Turn off SSL for every page except login.php and register.php

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You can use both login and register in the same condition

RewriteCond %{SCRIPT_FILENAME} !/(login|register).php [NC]

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...