Ver Mensaje Individual
  #7 (permalink)  
Antiguo 23/02/2010, 14:18
Avatar de eulloa
eulloa
 
Fecha de Ingreso: octubre-2007
Ubicación: Donde caiga la noche, si mi hijo me deja
Mensajes: 691
Antigüedad: 16 años, 6 meses
Puntos: 5
Respuesta: Cerrar sesión PHP e ir a otra dirección web

Como te dice arriba, el href de php te debería funcionar, además si te preocupan los robots sería mejor agregar una cabecera 301
Cita:
<?

Header( "HTTP/1.1 301 Moved Permanently" );

Header( "Location: http://www.nuevaurl.com" );

?>
Para avisar antes de redireccionar, con html, aunmq tiene el inconveniente de q algunos navegadores no lo verán
Cita:
<meta http-equiv="refresh" content="3;URL=http://tu.nueva.web">