solo con html en contre esto html
<meta HTTP-EQUIV="REFRESH" content="0; url=http://www.yourdomain.com/index.html">
explicacion:
meta HHTP-EQUIV="REFRESH" /sirve para refrescar
content="0" /el tiempo en segundos en que va a refrescar, en este caso 0 segundos
url=http://www.yourdomain.com/index.html" /direccion donde quieres enviar la pagina
para asp es:
<%
response.redirect("http://www.tudominio.com/")
%>
para php es
<?php
//this will NOT work, the browser received the HTML tag before the script
header( 'Location:
http://www.yoursite.com/new_page.html' ) ;
?>
espero que te sirva