--- globalredirect.module.orig 2008-02-15 11:23:42.000000000 +0900 +++ globalredirect.module 2008-02-15 11:21:23.000000000 +0900 @@ -25,7 +25,12 @@ } // If current path is also the frontpage, redirect to http://www.example.com. - if (!empty($_REQUEST['q']) && drupal_is_front_page()) { + if(function_exists('i18n_get_normal_path')) { + if (str_replace(array('/','node'), '', $_REQUEST['q']) == i18n_default_language()) { + drupal_goto('', $query_string, NULL, 301); + } + } + elseif (!empty($_REQUEST['q']) && drupal_is_front_page()) { drupal_goto('', $query_string, NULL, 301); }