My htaccess rewrite must handle these scenarios:
- http://example.com/words/pantalón
- http://example.com/words/pantal%C3%B3n
- http://example.com/words/señor+señora
My current .htaccess configuration is:
RewriteRule ^dictionary/([\w\+]{2,50})$ /words.php?q=$1 [QSA,L]
It is not recognizing the special chars, e.g.: ñ, ó.
Any ideas? Thanks!