Vielen dank soweit.
Das JS wirds tun. Ich war so frei das mal anzupassen.
Code
// verteiler.js by HolyMarcell
var loc = document.location+""; // To String;
var splits = loc.split("."); // explode();
var sub = 'index';
if(splits.length > 2)
{
splits = splits[0].split('//'); // merge http://
sub = splits[1];
}
//document.write(sub);
document.cookie = "sub="+sub;
document.location.href = "http://"+sub+".you-fail.in/";
Alles anzeigen
Subdomain auslesen, in nen Cookie stellen und sich selbst wieder aufrufen:
PHP
<?php
// index.php by HolyMarcell
if(empty($_COOKIE['sub']))
{
?>
<html>
<head></head>
<body>
<script type="text/javascript" src="verteiler.js"></script>
</body>
</html>
<?php
}
else
{
$sub = $_COOKIE['sub'];
switch($sub)
{
case 'foobar':
break;
case 'bar':
break;
default:
break;
}
}
?>
Alles anzeigen
MfG,