I've managed with

routes_in = (
    ('/(?P<any>.*)', '/welcome/\g<any>'),
)
routes_out = (
    ('/welcome/(?P<any>.*)', '/\g<any>'),
)

but now i can't see some images like: 
http://domain.com/welcome/controller/download/some.image.png

On Sep 29, 11:41 pm, Francisco Costa <[email protected]> wrote:
> Hello!
> I have the following routes:
>
> routes_in = (
>     ('/$c/$f', '/welcome/$c/$f'),
> )
>
> routes_out = (
>     ('/welcome/$c/$f', '/$c/$f'),
> )
>
> but when I have a function that needs some arguments, the URL link
> with the 'welcome' application.
> What should I do?

Reply via email to