hi I have a problem, the ssl certificate supports android versions from 4.4.3 up.
Android versions < 4.4.3 still bring me visitors how can I do for these versions to serve http instead of https?
this is the code I use to make a 301 redirect in https on everything.
RewriteEngine On
RewriteBase /
RewriteCond %{HTTPS} off
RewriteCond %{HTTP:X-Forwarded-Proto} !https
RewriteRule ^(.*)$ https
://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
thanks
[edited by: phranque at 12:27 pm (utc) on Mar 31, 2018]
[edit reason] unlinked url [/edit]