For this type of routing where you don't use complex regular expressions, 
it is better to use the simple router.
It could make selected functions of the default controller in the default 
application available directly, i.e.
/f1 == /my_app/default_controller/f1

To have "/rules" mapped to "/aggat/default/rules", you only need this in 
your routes.py:
routers = dict(
    BASE = dict(
        default_application = "aggat",
        functions = ["rules"]
    )
)

Reply via email to