Sergiu
Sergiu

Reputation: 297

How to 301 redirect to default language

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

Answers (1)

anubhava
anubhava

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

Related Questions