Zamanında internette şöyle bir betiğe rastlamıştım, işe yarar.
<script>
if (window.top != null){
var durum = self.location == top.location || (document.referrer.indexOf("kendi siteniz") == -1 && document.referrer.indexOf("ifaremeye izin verilen site") == -1);
if(durum){
top.location.href = "yönlendirilecek adres";
}
} else {
window.location.href = "yönlendirilecek adres";
}
</script>