The rule:
RewriteRule myurl /newurl
Matches:
http://localhost:8080/test/xxxmyurly%C3%ADy
But doesn't match
http://localhost:8080/test/xxxmyurly%EDyy
%C3%AD is the character í utf-8 encoded and %ED is unicode encoded.
How can I configure Apache mod_rewrite to not ignore URL's containing unicode encoded characters?
RewriteLogand setRewriteLogLevelto see what happens. – quanta Sep 25 '11 at 16:03