Ver Mensaje Individual
  #2 (permalink)  
Antiguo 21/09/2008, 20:30
binagol
 
Fecha de Ingreso: agosto-2008
Ubicación: Buenos Aires
Mensajes: 247
Antigüedad: 16 años, 6 meses
Puntos: 6
Respuesta: Ayuda con redireccionamiento!!

si usas php, tenes la funcion header()


<?php
/* Redirect to a different page in the current directory that was requested */
$host = $_SERVER['HTTP_HOST'];
$uri = rtrim(dirname($_SERVER['PHP_SELF']), '/\\');
$extra = 'myindex.php';
header("Location: http://$host$uri/$extra");
exit;
?>

tenes la guia que lo explica en:

http://www.php.net/manual/es/function.header.php

fijate si te sirve.....