Hallo, Steffen,
folgender Code, der fast alle Browser automatisch weiterleitet und normalerweise die Funktion des "Zurück"-Buttons nicht beeinträchtigt, hat sich bei mir bewährt (s.u.) ...
Grüße,
Sebastian Becker
<html>
<head>
<title>Seitenname - für alle Fälle ;-) ...</title>
</head>
<script language="JavaScript">
<!--
var newpage= "neueseite.htm";
if(location.href) {
if(window.location.href.replace) {
top.location.replace(newpage);
}
else { // causes problems with back button, but works
top.location.href=newpage;
}
}
//-->
</script>
<noscript>
<META HTTP-EQUIV="refresh" content="0; URL=neueseite.htm">
</noscript>
<body bgcolor="#FFFFFF">
</body>
<font color="#666666"><a href="neueseite.htm">go on</a></font>
</html>