I am working with CodeIgniter and I have implemented the multi-language to add different languages. Everything works perfect, the problem is that now mysite / and mysite / is have the same content. I want to redirect from my site / to my site / es but I can not get it.
This is my current htaccess file, now I am working in local:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
Let's see if anyone can help me, thanks.