Redireccionar HTML Con y Sin Frame
CON FRAME
<html>
<frameset cols="100%,0">
<frame src="http://URLdestino" />
</frameset>
</html>
<frameset cols="100%,0">
<frame src="http://URLdestino" />
</frameset>
</html>
SIN FRAME
<html>
<head>
<meta http-equiv="Refresh" content="0;url=http://URLdestino">
</head>
</html>
<head>
<meta http-equiv="Refresh" content="0;url=http://URLdestino">
</head>
</html>