Hello
I'm having problems by implementing a RewriteRule. I would like to force users to use https instead of http.
I implemented a Rule, which redirects a URL ( to a Secure URL
(
***********************************************************
RewriteEngine On
RewriteCond %{SERVER_PORT} !^443$
RewriteRule ^(.*) [R]
***********************************************************
Until there, everything works fine. But once i get the Secure URL, erase the "s" from https and press the refresh button i get the unsecured URL
(So my question, how can i keep https for the whole session?
Thanks
Antonio
I'm having problems by implementing a RewriteRule. I would like to force users to use https instead of http.
I implemented a Rule, which redirects a URL ( to a Secure URL
(
***********************************************************
RewriteEngine On
RewriteCond %{SERVER_PORT} !^443$
RewriteRule ^(.*) [R]
***********************************************************
Until there, everything works fine. But once i get the Secure URL, erase the "s" from https and press the refresh button i get the unsecured URL
(So my question, how can i keep https for the whole session?
Thanks
Antonio