If you know how to solve this... I'm running Zope behind Apache and at the zope root there's a folder "info" which holds the site under zope. The idea of my setup is that anything else than http://www.kuva.fi/info/whatever is served from Apache and that .../info/whatever path comes from Zope. My httpd.conf looks like this ** ProxyPass /info/ http://www.kuva.fi:8080/VirtualHostBase/http/www.kuva.fi:80/VirtualHostRoot/... ProxyPassReverse /info/ http://www.kuva.fi:8080/VirtualHostBase/http/www.kuva.fi:80/VirtualHostRoot/... RewriteRule /info/.* http://www.kuva.fi:8080/VirtualHostBase/http/www.kuva.fi:80/VirtualHostRoot/... [R] Redirect /index.html http://www.kuva.fi/info/ ** Now this setup runs ok, but when I want to manage it, all the icons and css styles and that gets lost. The problem is that e.g. the zopes own manage_page_style.css gets looked from Apache's side and not from Zope. Hopefully I'm making some sense :-)If I've crasped this right, the problem is that for some reason the managing system generates URL's for icons which aren't proxyed but instead they point to the Apache's document root. Any ideas how to fix this? Using the actual ip address (193.167.128.250:8080/manage) instead of the hostname will work, but its not very convenient. jokke h.