Could someone tell how could i get a nice looking url (with URL2 method) on the story link
in place of
Le-march%C3%A9-automobile
I could get
I tried to add
PHP Code:
function makeUrlFriendly($input) {
.....
.....
//added for french characters...
$output = str_replace("é", "e", $output);
$output = str_replace("à", "e", $output);
$output = str_replace("ê", "e", $output);
$output = str_replace("à", "a", $output);
$output = str_replace("â", "a", $output);
$output = str_replace("ù", "u", $output);
And added some links, to see the results, but nothing happens !!!