Mark Muyskens
03-03-2010, 01:48 PM
Hey,
I am using the following htaccess to redirect specific pages to https;
RewriteEngine On
RewriteBase /
RewriteCond %{HTTPS} off
RewriteCond %{REQUEST_URI} /feedback_form_13.html [OR]
RewriteCond %{REQUEST_URI} /pay_now_38.html [OR]
RewriteCond %{REQUEST_URI} /pay_now_39.html
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [L]
This works great, but when reaching one of these pages. It serves sequential pages all in https. How can I switch out of https if it is not one of the specified pages?
Thanks!
I am using the following htaccess to redirect specific pages to https;
RewriteEngine On
RewriteBase /
RewriteCond %{HTTPS} off
RewriteCond %{REQUEST_URI} /feedback_form_13.html [OR]
RewriteCond %{REQUEST_URI} /pay_now_38.html [OR]
RewriteCond %{REQUEST_URI} /pay_now_39.html
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [L]
This works great, but when reaching one of these pages. It serves sequential pages all in https. How can I switch out of https if it is not one of the specified pages?
Thanks!
