neyse istediğimi yaptım.lazım olan olursa diye koyayım kodu
firefox ve ie7 de normal siteye gider
ie6 da istediğiniz sayfaya gider

Alıntı
<script>
if(navigator.userAgent.indexOf("Firefox") != -1)
{
}
else if(navigator.userAgent.indexOf("MSIE 6") != -1)
{
window.location = "hata.html";
}
else if(navigator.userAgent.indexOf("Netscape") != -1)
{
}
else
{
}
</script>