may be make default routes
in main app folder routes.py:
# -*- coding: utf-8 -*-

routes_in = (

    (r'/favicon.ico', r'/main_app/static/images/favicon.png'),
    (r'/robots.txt', r'/main_app/static/robots.txt'),
(r'/', r'/main_app/default/index/'),

(r'/index/$anything', r'/main_app/default/index/$anything'),
(r'/index', r'/main_app/default/index'),

(r'/join/$anything', r'/main_app/default/index/join/$anything'),
(r'/join', r'/main_app/default/index/join'),
(r'/shop_add/$anything', r'/default/shop_add/$anything'),
(r'/shop_add', r'/bs3b/default/shop_add'),
(r'/support/$anything', r'/default/support/$anything'),
(r'/support', r'/main_app/default/support'),
(r'/$anything', r'/main_app/$anything'),
)

routes_out = [(x, y) for (y, x) in routes_in]



-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to