Sedlav:
Dependiendo de como esté configurado tu server, podés probar con alguna de estas dos variantes, al inicio del (que debería ser un php) index que está en
/
Código PHP:
Ver original<?php
if($_SERVER['SERVER_NAME'] == "xxx.cl"){
Header("Location: /xxx/index.html"); }
if($_SERVER['SERVER_NAME'] == "aaa.cl"){
Header("Location: /aaa/index.html"); }
##################
if($_SERVER['HTTP_HOST'] == "xxx.cl"){
}
if($_SERVER['HTTP_HOST'] == "aaa.cl"){
}
?>
No debe de existir ninguna linea en blanco sobre este código
Saludos