Wednesday 01 October 2008 2:34:07 am
Hi, i have 2 websites (1 in french and 1 in english), i changed this code in the extension to make the good redirection :
switch ($acceptedLang) {
case 'fr':
header("Location: www.mysite.fr");
exit;
break;
case 'en':
header("Location: http://www.mysite.com");
exit;
break;
default:
header("Location: http://www.mysite.com");
exit;
}
but it doesn't work under Firefox and Internet Explorer 7 is it normal ? thanks for your help
Anthony
|