Setting SSL login session with apache and plone for secure login -


i try force ssl session after login. login part works forceing connection ssl. after goes normal http after login. other browser expect ie.

from

http://plone.org/documentation/kb/apache-ssl

i have below working ie. not work firefox , chrome. running apache 2.2.2 , plone 3.5.

redirect https if __ac cookie set

rewritecond ${https} off

rewritecond %{http_cookie} __ac=

rewriterule ^(.*) https://%{server_name}$1 [ne,l]

any ideas?

thanks,

wayne

found solution:

redirect https if __ac cookie set

rewritecond ${https} "!=on" rewritecond %{http_cookie} __ac= rewriterule ^($|/.*) https://%{server_name}/$1 [ne,l]


Comments