2019-11-17, 22:44:20
(2019-11-16, 20:54:57)Cre8gent Wrote: Hi i am also having issues with the default language.
I have Swedish for 0
and English for 1
but the site always resorts to English 1 on reset of cookies
any idea how to resolve this?
Edit your .htaccess with this code:
Code:
RewriteRule ^/?$ sv/ [R,L] # optional
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(sv|en)/(.*?/)?([A-Za-z0-9-]+)/?$ index.php?id=$3&lang=$1 [QSA,L]
RewriteRule ^(sv|en)/?$ index.php?lang=$1 [QSA,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*?/)?([A-Za-z0-9-]+)/?$ index.php?id=$2&lang=sv [QSA,L]