hi, I want to serve multiple websites (absolutely different domains) using the same web2py instance
I am getting always an 'Invalid request' message
routes.py is something like that
routes_in = (
('^.*site1\.com.*/(.*)', '/site1/$1'),
('^.*site2\.com.*/(.*)', '/site2/$1'),
)
I read this post
http://groups.google.com/group/web2py/browse_thread/thread/4768cc04ad88c48d/ce9e4800f98591d2?lnk=gst&q=routes#ce9e4800f98591d2
and I thought that will work
Any thoughts?

