I'm having a problem getting to the "manage" page of the zope server. My configuration is as follows. <VirtualHost *> ServerName zope.xyz.com ServerAdmin webmaster@clave.info RewriteEngine On RewriteRule ^/(.*) http://localhost:8080/$1 [L,P] #ProxyPass / http://localhost:8080/ #ProxyPassReverse / http://localhost:8080/ ProxyVia on </VirtualHost> Everytime a request for zope.xyz.com comes in it get's the main page but any attempt to go to zope.xyz.com/manage/ results in errors from the client machine about not being able to connect to "localhost:8080" It's set up this way because this machine is only accessible through port 80 So the idea is just to have Apache act as a gateway to the zope site(s) running locally on 8080. Any help would be greatly appreciated.