Hi,
My website's login page is in the fist page (http://mydomain.com) and i need to only redirect the login page to "https" and the rest of the website must be non-ssl (http) .
I used this code in htaccess :
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) [
mydomain...]
But it redirects all the pages to https .
Website URL is dynamic and i really have no idea how to direct only one page to https and redirect it back to http after login.
Before Login : [
mydomain.com...]
After Login :
[
mydomain.com...]
Is there any way to only direct the fist page to https and direct it back after login?
Thanks...