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
|
<?
function url_actuelle()
{
return "http://" . $_SERVER["SERVER_NAME"] . $_SERVER["REQUEST_URI"];
}
if(strstr(url_actuelle(), '.com'))
{
echo "<meta http-equiv=\"REFRESH\" content=\"0;URL=http://www.tutu-res.com/en/\">";
}
else
{
echo "<meta http-equiv=\"content-type\" content=\"text/html;charset=iso-8859-1\">";
}
if(strstr(url_actuelle(), '.fr'))
{
echo "<meta http-equiv=\"REFRESH\" content=\"0;URL=http://www.tutu.fr/fr/index.php\">";
}
else
{
//echo "<meta http-equiv=\"content-type\" content=\"text/html;charset=iso-8859-1\">";
}
?> |
Partager