A part of my htaccess that redirects HTTP traffic to HTTPS looks like this:
RewriteCond %{HTTP:X-Forwarded-Proto} !https
RewriteRule ^.*$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
I need allow some pages (lets say /page1, /page2) be HTTP only. Thanks!