My htaccess rewrite must handle these scenarios:
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!
Final solution
RewriteRule ^dictionary/([^/.]+)$ /words.php?q=$1 [QSA,L]