Is there a way to allow foreign characters in .htaccess mod_rewrite character sets? i.e., a way to add foreign characters like ç and others to ([A-z]+) ?
| ||||
|
feedback
|
|
I’m not quite sure with what character encoding Apache interprets the data in configuration files like the .htaccess file. But you can express these characters with the hexadecimal notation
Now all you need to know is how these characters are encoded when requested (in general either ISO 8859-1 or UTF-8). | |||||
feedback
|
|
you're using regular expressions, right? Take a look at this link: http://www.regular-expressions.info/unicode.html | |||
|
feedback
|