blob: 28a39ede587bd9d750288c704294f31d51156060 (
plain)
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
30
31
32
|
<?php
/**
*/
require_once 'langs.inc.php';
if (isset($_GET['flang']))
{
$lang = array_key_exists($_GET['flang'], $langs) ? $_GET['flang'] : 'en';
if (isset($_GET['furl']))
{
$url = explode('/', $_GET['furl']);
array_shift($url);
array_shift($url);
$url = '/' . $lang . '/' . implode($url, '/');
//$url = substr_replace($_GET['furl'], $lang, 1, 2);
}
else
$url = '/' . $lang . '/';
header(sprintf('Location: %s', $url));
die;
}
require_once 'localeDetection.class.php';
$locale = new ChooseLocale(array_keys($langs));
$locale->setDefaultLocale('en');
header(sprintf('Location: /%s/', $locale->getCompatibleLocale()));
die;
|