Hello!
I have this url http://domain.com/welcome/user/view/username that
shows a user profile page.
I've already get rid of the 'welcome application mae by using the
following routes
routes_in = (
('/(?P<any>.*)', '/welcome/\g<any>'),
)
routes_out = (
('/welcome/(?P<any>.*)', '/\g<any>'),
)
so the URL now is http://domain.com/user/view/username
But I would like to improve this urls by cutting the 'view' function
out so the url would be http://domain.com/user/username
What should I add to the routes?