Reputation: 297
I have a problem with site redirection. So, when I type in browser mysite.com I get a 301 moved permanent to mysite.com/en
How to write a 301 rule to redirect to my default language.
I want to get status 200 when tge user navigate to my site.
Thanks in advance!
Upvotes: 1
Views: 203
Reputation: 785128
You can use this code in your DOCUMENT_ROOT/.htaccess
file:
RewriteEngine On
RewriteRule ^/?$ /en [L]
Also you need to find the 301 rule/code and comment it out.
Upvotes: 1