/home instead of /en

On live install here:
http://www.webid.co.nz on some browsers it defaults to http://www.webid.co.nz/home (404 error - doesnt show on site error or Litecart error log) on others it goes to http://www.webid.co.nz/en which is the right one.
This happens after deleting browser caches regardless.

Ive tried combos of .htaccess none have worked on redirect.
Anyone had similar and fixed it?
Regards,
Al.

tim

It should never default to /home.

These occurences are valid though:

/index
/en/index
/en/
/index.php/index
/index.php/en/index
/index.php/en/

Controlled by lib_route.inc.php and url_index.inc.php.

Dont know how, but by using a secure redirect seems to have fixed the problem:
.htaccess

RewriteEngine On
  # Web path to catalog root
RewriteBase /
RewriteCond %{HTTPS} !=on
RewriteRule ^/?(.*) https://%{SERVER_NAME}/$1 [R,L] 
  # No rewrite logic for physical files
  RewriteCond %{REQUEST_FILENAME} -d [OR]
  RewriteCond %{REQUEST_FILENAME} -f [OR]
  RewriteCond %{REQUEST_FILENAME} -l
  RewriteRule ^ - [L]
  RewriteRule ^.*$ index.php?%{QUERY_STRING} [L]

# Deny access to content

  
    Require all denied
  
  
    Order Deny,Allow
    Deny from all
  
Este hilo se ha cerrado debido a una larga inactividad. No es posible publicar en él.
View code on GitHub