I have a problem with codeigniter and cyrilc url I'm trying to do something like this,
site.com/home site.com/начало
in my router I've got
$route['([А-Яа-яa-zA-Z0-9-]+)'] = "home/index/$1";
Which dosn't work I put in my config.php and
$config['permitted_uri_chars'] = 'a-zа-яё 0-9~%.:_\-';
but still dosn't work then I found in internet
$route['(:any+)(?:(.html))?'] = "home/page/$1";
Which is working but, now I lose my router native behavior because :any gives and /
so Is there a way to use (:any) but not actually any, so I can keep my router behavior
Thank you in advance