Редирект для IE v 6,7,8,9.
Под v 10 и выше + safari - вывод,если отключен js ,
<noscript>инструкция по настройке.</noscript>,если js включен-отображение страницы.
Вот,что наклепал,но при этом в IE 11 тоже редирект происходит.
<?
$user_agent = $_SERVER['HTTP_USER_AGENT'];
if (stripos($user_agent, 'MSIE 6.0') == false && stripos($user_agent, 'MSIE 7.0') == false && stripos($user_agent, 'MSIE 8.0') == false &&stripos($user_agent, 'MSIE 9.0') == false){
header ("Location: ie.html");
}
if (stripos($user_agent, 'MSIE 10.0') == false && stripos($user_agent, 'MSIE 11.0') == false && stripos($user_agent, 'Safari') == false){
echo '<noscript> <div id= "noscript-warning">В Вашем браузере отключен Javascript</div> </noscript>;
<style>
#noscript-warning {
color: red;
}
</style>';
}
?>