Hello I have the following in my routes.py file but its not mapping the second domain to the web2py project any ideas whats up?
routers = dict(
# base router
BASE = dict(
default_application = 'cheer10s',
domains = {
'cheer10s.com' : 'cheer10s',
'kidify.org' : 'kidify'
},
applications = ['cheer10s','kidify','admin'],
controllers = 'DEFAULT'
),
)
*cheers

