I have an ecommerce site, it's all running with HTTPS, so I put this code in HTACESS:
RewriteCond %{HTTPS} off
RewriteRule .* https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
It works fine, the problem is that I need a single URL not to undergo this redirection, ie, that single URL needs to be accessible without HTTPS, how do I do it?