Could you please explain, how I should do it?
I try like:
routes_in = (
('/xn--h1acfjl4f.xn--p1ai', r'/hello/default/index')
)
and
routes_in = (
('/привет', r'/hello/default/index')
)
but it seems not work
On 17 апр, 20:49, Massimo Di Pierro <[email protected]>
wrote:
> You have to use utf8 for now.
>
> On Apr 17, 9:45 am, LightOfMooN <[email protected]> wrote:
>
>
>
>
>
>
>
> > Hello
> > I need to route by cyrillic domain to my app
> > How can I do that? Seems, routes don't work with unicode.
>
> > I need something like:
> > routes_in = (
> > (ur'/привет', r'/hello/default/index'),
> > )