routes.example.py is working with also: http://web2py.com/book/default/chapter/04
Here is a more complex example that exposes a single app "myapp" without
unnecessary prefixes but also exposes *admin*, *appadmin* and static:
1.
2.
3.
4.
5.
6.
7.
8.
routes_in = (
('/admin/$anything', '/admin/$anything'),
('/static/$anything', '/myapp/static/$anything'),
('/appadmin/$anything', '/myapp/appadmin/$anything'),
('/favicon.ico', '/myapp/static/favicon.ico'),
('/robots.txt', '/myapp/static/robots.txt'),

