Quote:
Originally Posted by sturgis I have Apache running in port 80 and 443 and tomcat (zimbra) on 7080 and 7443.
When a user log off there is an error. It redirects to example.com://zimbra rather and example.com/zimbra |
Yeah, I get this too -- the redirect with mod_jk ends up making it look for a file named "zimbra" in the DocumentRoot.
To solve it, I just made a file named "zimbra" in the DocumentRoot ;-)
My file looks like this:
<html>
<head>
<meta HTTP-EQUIV="Refresh" CONTENT="0; URL=http://zimbra.mysite.com">
</head>
Redirecting to login page <a href="http://zimbra.mysite.com">http://zimbra.mysite.com</a>
</html>
So it simply redirects back to the Zimbra login page.
-Eric