Ben url yönlendirme işlemlerini php'de bu şekilde yapıyorum.

if ($insert) {

Header ( "Location : ogrenci.php?durum=ok&ogrenci_id=$ogrenci_id");
exit;

} else {
Header( "Location : ogrenci.php?durum=no&ogrenci_id=$ogrenci_id");
exit;
}

}