aca te hize una funcion fijate si funciona
Código PHP:
<?php
function noie() {
$user_agent = $_SERVER['HTTP_USER_AGENT'];
$posicion = strrpos($user_agent, "MSIE");
if ($posicion === false) {
$ie = false;
} else {
$ie = true;
}
if (!$ie) {
}
else {
Header( "HTTP/1.1 301 Moved Permanently" );
Header( "Location: http://www.nuevaurl.com" );
}
}
noie(); // prueba del script
?>