php bilgin var ise

function seo($isim)
{
$find = array('Ç', 'Ş', 'Ğ', 'Ü', 'İ', 'Ö', 'ç', 'ş', 'ğ', 'ü', 'ö', 'ı', '+', '#','.');
$replace = array('c', 's', 'g', 'u', 'i', 'o', 'c', 's', 'g', 'u', 'o', 'i', 'plus', 'sharp','');
$text = strtolower(str_replace($find, $replace, $isim ));
$text = preg_replace("@[^A-Za-z0-9-_.+]@i", ' ', $isim );
$text = trim(preg_replace('/s+/', ' ', $isim ));
$text = str_replace(' ', '-', $isim );
return $text;
}

çalıştırmak için echo seo(ÖMER) yaz yeter sana geri dönüşü omer olur link yapısında sorun yaşamazsın