Okay. I got this figured out now. It turns out that I didn't want virtual hosting at all, all I really wanted was for Apache to do the rewrite stuff so that when I requested machine:8000/zope, it would do a simple rewrite to machine:8080/
I was able to do this with the following: RewriteEngine On RewriteLog var/apache2/log/rewrites.log RewriteLogLevel 0 RewriteRule ^/zope(/?.*) http://127.0.0.1:8080/++vh++http:\ %{SERVER_NAME}:8000/zope/++$1 [P,L] Thanks to all for your help. I really appreciate it. -- Steve Juranich Tucson, AZ USA _______________________________________________ Zope3-users mailing list [email protected] http://mail.zope.org/mailman/listinfo/zope3-users
