I am getting "The page isn't redirecting properly" in Firefox when trying to use the following redirect rules.
turn on https for these guys
RewriteCond %HTTPS off
RewriteCond Host: (.*)
RewriteRule ^/(cc_contactus.asp|cc_trackship.asp|ordertrack.asp|confirm.asp|cc_signup.asp) https\://$1/$2 [I,RP]
turn off https for these guys
RewriteCond %HTTPS on
RewriteCond Host: (.*)
RewriteRule ^/(cc_paymentmethods.asp|cc_promotions.asp|cc_shipmultiple.asp|cc_pricing.asp|cc_shipcharges.asp|cc_shipcarriers.asp|cc_delivery.asp|cc_easyreturns.asp|cc_privacy.asp|cc_safeshopping.asp|site_map.asp|cc_legalnotice.asp|cc_proposition65.asp) http\://www.boutique.com/$2 [I,RP]
What do I need to change to get this to work correctly?