I'm trying to config my htaccess so that if a URL in my website contains Buy,Rent,Make-offer,Sold to redirect https requests to http
This is what I've tried with no luck
# Redirect other HTTPS requests to plain HTTP
RewriteCond %{HTTPS} on
RewriteRule ^(buy|rent|sold|make-offer)$ http://%{HTTP_HOST}%{REQUEST_URI} [R=301,L,QSA]
Can someone help me?
/buy,/rent,/soldand/make-offer. Is that what you really want to do?