0
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 well, the problem is that I need a single URL not undergo this redirection, IE, this single URL needs to be able to be accessed without HTTPS, how to do?
what is the url you want to leave out of HTTPS?
– Rodrigo Gomes