routes_in = ( ('/hello', '/app1/controller1/hello'), ('/bye',
'/app1/controller1/bye'))
On Tuesday, August 21, 2012 1:28:49 AM UTC-7, Daniel Gonzalez wrote:
>
> 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
>
--