I have a secure site, and am currently redirecting visitors to it if they access through the unsecured http://. I am doing that like so:
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
I need one file, domain.com/example.php to not ever be redirected to the secure site, and just keep the user there. Can anyone suggest a way of doing this? I've looked at similar code, but I can't work out what needs to be changed to work exactly
Thanks!