Good day! I have a question about the $config['permitted_uri_chars']
in CodeIgniter
. The default value of $config['permitted_uri_chars'] = 'az 0-9~%.:_\-;
How can I organize a regular calendar so that you can allow to write any character in the url?
|
2 answers
Any characters:
$config['permitted_uri_chars'] = '.';
If by "any characters" I mean Russian letters: mouse .
- does not work - Vanguard
|
Solving the problem with Russian characters in the URL - an article on Habré.
|