te la faccio semplice
hai due pagine: index.html e iframe.html
index.html richiama iframe.html

dentro ad iframe.html scrivi nell'head
codice:
<script type="text/javascript">
if (window.self != window.top) {
   window.top.location.href = 'http://.../index.html';
}
</script>
Ciao