Ver Mensaje Individual
  #2 (permalink)  
Antiguo 16/03/2010, 07:59
serius29
 
Fecha de Ingreso: octubre-2007
Ubicación: en santiago chile
Mensajes: 34
Antigüedad: 16 años, 6 meses
Puntos: 0
Respuesta: http redirect para enlaces rotos.

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