Hello to all.
I have such a link - www.example.com/
. I want, when someone came to the site, the link was automatically so - www.example.com/en
While .htaccess is:
RewriteEngine on RewriteCond $1 !^(index\.php|images|uploads|js|css|help|robots\.txt|favicon\.ico|doc) RewriteRule ^(.*)$ /index.php/$1 [L]
(CodeIgniter, I want a multilingual site).