Have you tried mod_rewrite?  I've tried mod_write with wsgi and I had
some problems with it not working right, but if you can run each of
your instances on a different port and then use rewrite rules it might
work.

Just a guess here:

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteRule ^/site1(.*) http://host:8000/site1/$1 [L,P]
    RewriteRule ^/site2(.*) http://host:8001/sit2/$1 [L,P]
</IfModule>

-wes

On Wed, Feb 3, 2010 at 10:50 AM, Ted Baker <[email protected]> wrote:
> I am interested in running multiple web2py trees, for use in testing
> web2py upgrades before full deployment, as well as testing local code.
>
> Ted
>
> --
> You received this message because you are subscribed to the Google Groups 
> "web2py-users" group.
> To post to this group, send email to [email protected].
> To unsubscribe from this group, send email to 
> [email protected].
> For more options, visit this group at 
> http://groups.google.com/group/web2py?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/web2py?hl=en.

Reply via email to