Code: Select all
[PHP]
if(!$GLOBALS['aktion'][0]) {
switch(strtolower( substr( $_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2 ) ) ) {
case 'de': header('Location: '. $GLOBALS['phpwcms']['site'].$GLOBALS['phpwcms']['root'].'index.php?deutsche_version');
exit();
break;
default: header('Location: '.$GLOBALS['phpwcms']['site'].$GLOBALS['phpwcms']['root'].'index.php?english_version');
exit();
}
}
My wcms is located in a subfolder. Should I paste the languages redirection in my index.htm?