OK, I haven't tested this a lot, but you might try this: I found a function that someone wrote here:
https://gist.github.com/evaisse/169594 that replaces accented characters in a string. But since I don't know about the licensing, I won't copy it here. But you can copy it yourself and paste it in to a plugin.
So, you can create a new plugin using hook location friendlyurl_geturl and code like this:
Code:
if (!function_exists('remove_accents'))
{
// Paste copied function here
}
$url=remove_accents($url);
Then go to that site, copy the code
(but not the first line that starts with <?php), and paste it where indicated.
Also one other thing, there seems to be a minor bug in that function, so you should find this line:
Code:
if( !function_exists('mb_detect_encoding') ) {
and remove the ! so that it looks like:
Code:
if( function_exists('mb_detect_encoding') ) {