Hi, My site has 3 different languages and will have even more in the future. What I am trying to do it redirect all users depending on the country they are to the specific language. How could I do this with .htaccess to redirect all people to main page, Spanish people to domain.com/es, and so on?
Example: RewriteEngine on RewriteCond %{HTTP:Accept-Language} (es) [NC] RewriteRule .* www.site.com/es [L] Code (markup):