I want to redirect https to http for almost all pages, except for the checkout and account.
It is not the way to redirect https to http, I need an exception for some pages, that needs to run over https.
How do I define that inside my htaccess?
I tried this, but that does not work:
Options +FollowSymLinks
RewriteCond %{HTTPS} on
RewriteCond %{REQUEST_URI} ^/
RewriteCond %{REQUEST_URI} !^/customer/account/
RewriteCond %{REQUEST_URI} !^/checkout/
RewriteCond %{REQUEST_URI} !^/wishlist/
RewriteCond %{REQUEST_URI} !^/ebizautoresponder/
RewriteCond %{REQUEST_URI} !^/index.php/admin/dashboard/index/key/
#RewriteRule ^(.*)$ http://www.domain.com/$1 [L,R=301]
I use this Magento settings (I removed the entire URL):