Ver Mensaje Individual
  #3 (permalink)  
Antiguo 02/08/2006, 17:15
Avatar de Nefertiter
Nefertiter
 
Fecha de Ingreso: enero-2003
Ubicación: Rosario
Mensajes: 1.316
Antigüedad: 21 años, 3 meses
Puntos: 9
Código PHP:
<?
/*
NOTA: ESTA SON LAS PRIMERAS PAGINAS DE TU ARCHIVO
si la url es abc a tal pagina, sino  a la otra
*/
if (ereg('www.abc.com',$_SERVER['REQUEST_URI'])){
header("Location: archivo1.php")
exit();
}else{
header("Location: archivo2.php")
}

?>