I have the following lines of code in routes.py
routers = dict(
# base router
BASE = dict(
domains = {
'
domain.com' : 'init',
'
www.domain.com' : 'init',
'
ldc.domain.com' : 'admin',
'
my.domain.com' : 'controlpanel',
}
),
)
I want to add root_static = ['favicon.ico', 'robots.txt'], to routers but I am not sure
about the syntax and where to put the robots.txt file.
BASE = dict(
domains = { },
root_static = ['favicon.ico', 'robots.txt'],
),
)
would this be correct?
Should robots.txt go into the /applications/init/static/
Kind regards,
Annet