Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 ..

share|improve this question
Anybody know why the condition for HTTPS is not being picked up based on my rules above ? – frodo May 10 '12 at 17:58
If you want both https and http to redirect to the www2 domain, why do you need 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
The problem essentially is the https pages are not being redirected to www2 - only the http ones are .. – frodo May 11 '12 at 13:39
Seems almost like the https version is located somewhere else in the filesystem. – Gerben May 11 '12 at 16:06

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.