Deleted From Unknown Nov 5 2017 09:30 PM 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 Founder From Sweden Member since May 2013 tim Nov 5 2017 09:54 PM 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.
Deleted From Unknown Nov 5 2017 11:28 PM 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