I have 2 domains, example.com and example.com pointing to the same wordpress site.
I would like to redirect every time someone goes to example.com, is redirected to example.com/en
I found this code, but it also redirects example.com.br to / in
RewriteEngine on
RewriteCond %{HTTP_HOST} !^example\.com$
RewriteRule ^ http://www.example.com.br/en [L,R=301]
Can anyone help me?
P.S: Preferably works with both www, and without.