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")
}
?>