Ver Mensaje Individual
  #4 (permalink)  
Antiguo 02/03/2009, 11:23
initio
 
Fecha de Ingreso: diciembre-2008
Mensajes: 129
Antigüedad: 16 años, 2 meses
Puntos: 1
Respuesta: ayuda con redireccionamiento 301

Ahí va eso ...

public static function redireccion ($URL)
{
header("HTTP/1.1 301 Moved Permanently");
header("Status: 301 Moved Permanently");
header("Location: $URL");
header("Cache-Control: no-cache, must-revalidate");
header("Expires: Mon, 01 Gen 2000 01:00:00 GMT");

return (exit(0));
}