Se stai usando
:
[php]
<?
$browser = $_SERVER['HTTP_USER_AGENT'];
if(strstr($browser, 'MSIE') == true)
{
header('Location: pagina.html');
exit;
}
elseif(strstr($browser, 'Firefox') == true)
{
header('Location: pagina2.html');
exit;
}
else
{
header('Location: browser-sconosciuto.html');
exit;
}
?>
[/php]
Il redirect lo deve per forza.