header('Location:/www.mon-amour.be');
Now i have finally found a solution for this after 6 hours ;-)
I'm using this and it works great....
Thanks
if($_SERVER['HTTP_HOST'] == "mon-amour.be") {
header("Location:/index.php");
exit;
} elseif($_SERVER['HTTP_HOST'] == "monamour.be") {
header("Location: http://www.mon-amour.be/index.php");
exit;
}elseif($_SERVER['HTTP_HOST'] == "www.monamour.be") {
header("Location: http://www.mon-amour.be/index.php");
exit;
}