I have the following rules set up to ignore our staff intranet and staff php pages and redirect all other sales pages to our new www2 website. The problem is some of the old pages are also under https on the old site so I want them to redirect to just http pages on the new www2 site - I have put in the Rewritecond for https as per below but it it not picked up and the old https pages are displayed instead of them being transferred to the new www2 site under http. I have tried putting the https condition before the other conditions as well and that has made no difference - Can anyone advise please ?
RewriteRule ^(/sales/Salesstaff)($|/) - [L]
RewriteRule ^(/sales/salesstaff)($|/) - [L]
RewriteCond %{REQUEST_URI} !^(/sales/.*php3?).*
RewriteCond %{HTTP_HOST} ^www\.domain\.com$ [OR]
RewriteCond %{HTTP_HOST} ^domain\.com$ [NC]
RewriteCond %{HTTPS} on
RewriteRule ^/sales/?$ http://www2.domain.com/sales/index.shtml [R,L,NC]
RewriteRule ^/sales/(?!.*\.php3?$).*$ http://www2.domain.com%{REQUEST_URI} [R,L,NC]
Thanks for your time ...
Thanks Gerben .... I want all URL's to go to HTTP on www2..... so if someone goes to either http://www.domain.com/sales OR https://www.domain.com/sales - both of which are the same page but being either displayed as http or https - I want the url to be redirected as http only at http://www2.domain.com/sales ....I put in HTTPS condition in above code as I thought that would be the way to check if the link was https and if it was - then rewrite to www2 site ?
The problem essentially is the https pages are not being redirected to www2 - only the http ones are ..
RewriteCond %{HTTPS} on? Could you provide some example urls that you want to redirect, and some that you don't want to redirect? – Gerben May 10 '12 at 20:45