subdomeinen-tk
Versie 2 Beschikbaar! Gelieve versie 2 te gebruiken.
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php
//Eerst kijken wat de bezoeker heeft ingetypt:
$host2 = getenv('HTTP_REFERER');
$host = strtolower($host2);
//Dan doorlinken:
if(($host == "http://subdomein1.domein.tk/" OR $host == "http://subdomein1.domein.tk" OR $host == "http://www.subdomein1.domein.tk/" OR $host == "http://www.subdomein1.domein.tk/" OR $host == "http://www.domein.tk/subdomein1" OR $host == "http://domein.tk/subdomein1" OR $host == "http://www.domein.tk/subdomein1/" OR $host == "http://domein.tk/subdomein1/")
{
Header("Location: mapnaam1/");
}
elseif($host == "http://subdomein2.domein.tk/" OR $host == "http://subdomein2.domein.tk" OR $host == "http://www.subdomein2.domein.tk/" OR $host == "http://www.subdomein2.domein.tk/" OR $host == "http://www.domein.tk/subdomein2" OR $host == "http://domein.tk/subdomein2" OR $host == "http://www.domein.tk/subdomein2/" OR $host == "http://domein.tk/subdomein2/")
{
Header("Location: mapnaam2/");
}
elseif($host == "http://subdomein3.domein.tk/" OR $host == "http://subdomein3.domein.tk" OR $host == "http://www.subdomein3.domein.tk/" OR $host == "http://www.subdomein3.domein.tk/" OR $host == "http://www.domein.tk/subdomein3" OR $host == "http://domein.tk/subdomein3" OR $host == "http://www.domein.tk/subdomein3/" OR $host == "http://domein.tk/subdomein3/")
{
Header("Location: mapnaam3/");
}
//Als de bezoeker een niet geldige/geen subdomeinnaam heeft ingevult:
else
{
Header("Location: index2.php");
}
?>
//Eerst kijken wat de bezoeker heeft ingetypt:
$host2 = getenv('HTTP_REFERER');
$host = strtolower($host2);
//Dan doorlinken:
if(($host == "http://subdomein1.domein.tk/" OR $host == "http://subdomein1.domein.tk" OR $host == "http://www.subdomein1.domein.tk/" OR $host == "http://www.subdomein1.domein.tk/" OR $host == "http://www.domein.tk/subdomein1" OR $host == "http://domein.tk/subdomein1" OR $host == "http://www.domein.tk/subdomein1/" OR $host == "http://domein.tk/subdomein1/")
{
Header("Location: mapnaam1/");
}
elseif($host == "http://subdomein2.domein.tk/" OR $host == "http://subdomein2.domein.tk" OR $host == "http://www.subdomein2.domein.tk/" OR $host == "http://www.subdomein2.domein.tk/" OR $host == "http://www.domein.tk/subdomein2" OR $host == "http://domein.tk/subdomein2" OR $host == "http://www.domein.tk/subdomein2/" OR $host == "http://domein.tk/subdomein2/")
{
Header("Location: mapnaam2/");
}
elseif($host == "http://subdomein3.domein.tk/" OR $host == "http://subdomein3.domein.tk" OR $host == "http://www.subdomein3.domein.tk/" OR $host == "http://www.subdomein3.domein.tk/" OR $host == "http://www.domein.tk/subdomein3" OR $host == "http://domein.tk/subdomein3" OR $host == "http://www.domein.tk/subdomein3/" OR $host == "http://domein.tk/subdomein3/")
{
Header("Location: mapnaam3/");
}
//Als de bezoeker een niet geldige/geen subdomeinnaam heeft ingevult:
else
{
Header("Location: index2.php");
}
?>