Du willst verhindern, dass nur eine Seite aus einem Frame angezeigt wird ?
Dann hilft dir das:
<html>
<head>
<title>Frameumleitung</title>
<script language="JavaScript">
<!--
if (top.location == self.location)
{
window.top.location.href="index.html";
}
//-->
</script>
</head>
<body>
</body>
</html>
Viele Grüße
Torwächter