Hi!
so sollte es funktionieren:
solltest halt abfangen, wenn javascript deaktiviert etc.
<html>
<head>
<title>weiterleitung</title>
<script language="javascript">
if (window.location.host == "www.minos4u.com")
{
window.location.href = "minos4u.htm";
}
elseif (window.location.host == "www.xyz.de")
{
window.location.href = "index2.htm";
}
</script>
</head>
<body>
Automatische Weiterleitung...
</body>
</html>