Alıntı
<?php
if(strstr($HTTP_ACCEPT_LANGUAGE,"en")) {
Header("Location: http://www.****.com/index_en.html");
}
elseif(strstr($HTTP_ACCEPT_LANGUAGE,"en-us")) {
Header("Location: http://www.****.com/index_en.html");
}
elseif(strstr($HTTP_ACCEPT_LANGUAGE,"de")) {
Header("Location: http://www.***.com/index_de.html");
}
elseif(strstr($HTTP_ACCEPT_LANGUAGE,"tr")) {
Header("Location: http://www.****.com/index_tr.html");
}
elseif(strstr($HTTP_ACCEPT_LANGUAGE,"nl")) {
Header("Location: http://www.***.com/index_nl.html");
}
elseif(strstr($HTTP_ACCEPT_LANGUAGE,"fr")) {
Header("Location: http://www.****.com/index_fr.html");
}
else {Header("Location: http://www.****.com/index_en.html");
}
?>


Bu kodlarla deniyorum fakat firefoxta en olarak yolluyor beni. iexplorerda sorun yok.