aslında şöyle yapılabilir türk header.tpl kısmına lokasyon kontrolu yapan bir kod eklenip gelen kullanıcıyı farklı bir sayfaya yönlendirebilirsiniz.
Şöyle birşey buldum bunu nasıl entegre edebilirim ?
$Language = $_SERVER["HTTP_ACCEPT_LANGUAGE"];
// İngilizce
if (substr($Language, 0, 2) == 'en')
{
header("Location: http://www.tamkafadan.net/en/index.php ");
}
// Türkçe
else if (substr($Language, 0, 2) == 'tr')
{
header("Location: http://www.tamkafadan.net/tr/index.php ");
}
// Azerice
else if (substr($Language, 0, 2) == 'az')
{
header("Location: http://www.tamkafadan.net/az/index.php ");
}
// Arapça
else if (substr($Language, 0, 2) == 'ar')
{
header("Location: http://www.tamkafadan.net/ar/index.php ");
}
// Felemenkçe
else if (substr($Language, 0, 2) == 'nl')
{
header("Location: http://www.tamkafadan.net/nl/index.php ");
}
// Fransızca
else if (substr($Language, 0, 2) == 'fr')
{
header("Location: http://www.tamkafadan.net/fr/index.php ");
}
// Boşnakça
else if (substr($Language, 0, 2) == 'bs')
{
header("Location: http://www.tamkafadan.net/bs/index.php ");
}
// Rusça
else if (substr($Language, 0, 2) == 'ru')
{
header("Location: http://www.tamkafadan.net/ru/index.php ");
}
// Almanca
else if (substr($Language, 0, 2) == 'de')
{
header("Location: http://www.tamkafadan.net/de/index.php ");
}
// Japonca
else if (substr($Language, 0, 2) == 'ja')
{
header("Location: http://www.tamkafadan.net/ja/index.php ");
}
// Çince
else if (substr($Language, 0, 2) == 'zh')
{
header("Location: http://www.tamkafadan.net/ja/index.php ");
}
// Bulunamadı
else
{
header("Location: http://www.tamkafadan.net/found/index.php ");
}
?>