so gehts doch auch: mit einem php teilungsskript.: oder?
<?php
$host = $_SERVER["HTTP_HOST"];
if ($host == "www.domain1.at") {header ("Location: http://www.domain1.at/eins/index.html");}
if ($host == "www.domain2.at") {header ("Location: http://www.domain2.at/zwei/index.html");}
if ($host == "www.domain3.at") {header ("Location: http://www.domain3.at/drei/index.html");}
?>
|