any thoughts on this one?
On Sep 30, 12:57 pm, Francisco Costa <[email protected]> wrote: > Hello Wikus, tx for your answer. > > It only works if I don't have the previous routes that cut the > 'welcome' application. > > Can you make it work with bouth? > > I wouldn't like to show the application name in the others controllers/ > functions urls. > > On Sep 30, 11:57 am, Wikus van de Merwe <[email protected]> > wrote: > > > > > > > > > Try this: > > > routes_in = ( > > ("/user/(.+)", r"/welcome/user/view/\1"), > > > } > > > routes_out = ( > > ("/welcome/user/view/(.+)", r"/user/\1)"), > > > }

