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]+) ?

link|improve this question

43% accept rate
feedback

2 Answers

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 \xhh like:

# ç in ISO 8859-1
RewriteRule \xE7 …
# ç in UTF-8
RewriteRule \xC3\xA7 …

Now all you need to know is how these characters are encoded when requested (in general either ISO 8859-1 or UTF-8).

link|improve this answer
so something like RewriteRule /name/([A-z\xE7\xC3\xA7(and all other foreign characters allowed)]+) index.php?user=$1 ? – ina Jul 26 '10 at 15:09
@ina: No, when using multi-byte characters you need to use an alternation like ([A-z\xE7]|\xC3\xA7)+). – Gumbo Jul 26 '10 at 15:38
feedback

you're using regular expressions, right? Take a look at this link: http://www.regular-expressions.info/unicode.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.