ob_start();
$lg = substr($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2);
if($lg=="tr"){ //eğer dil Türkçe ise
//hiçbirşey yapma
}else{
$git = "http://www.siteniz.com/404.php";
header("Location: $git"); //eğer Türkçe harici dil ise 404 sayfasına git
}
?>