Zope/Apache rewrite rules
From LinuxServerTech
How to set up Apache for Zope
Set up Apache2 for mod_rewrite and mod_proxy. mod_proxy_http also should be loaded, but this appears to be automagically loaded by mod_proxy.
Then, for each virtual machine, add the following. Note that xalva.info is the domain to be set up.
order deny,allow allow from all RewriteEngine On RewriteLog '/home/www/www.xalva.info/log/rewrite.log' RewriteLogLevel 0 RewriteRule ^/local/ - [L] RewriteRule ^/(.*) http://xalva.info:9673/home/xalva.info/site/$1 [P]
