Hello, I have the following routing requirements, which I am unable to configure in routes.py:
www.mysite.com/hello -> application1, controller1, hello www.mysite.com/bye -> application1, controller2, bye As you can see, the functions hello and bye are in different controllers. Is it possible to achieve this with routes.py? Thanks, Daniel --

