I am forwarding my http traffic to https with a .htaccess file like this:
RewriteEngine On
RewriteCond %{HTTPS} !on
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
This works everywhere except on iOS safari. When I go to the http address on iOS safari, the browser hangs because there is no where to go with http.
What can I do to forward http to https on iOS Safari?