Hi,
I'm trying to configure a specific application (developed in Python/Django)
to run only through HTTPS, what I need is redirect a specific directory to
HTTPS:
FROM
<a href="http://myserver.com/dashboard" title="http://myserver.com/dashboard">http://myserver.com/dashboard</a>
TO
<a href="https://myserver.com/dashboard" title="https://myserver.com/dashboard">https://myserver.com/dashboard</a>
I created some redirect rules on apache httpd.conf like that:
RewriteCond %{HTTPS} !=on
RewriteRule ^/dashboard$ https://%{SERVER_NAME}/dashboard [R=301,L]
The redirect from HTTP to HTTPS is working fine... but after redirected to
the HTTPS address the login page does not work anymore...