Raymond the Developer
Raymond the Developer

Reputation: 1676

Wordpress htaccess redirect top level domain to directory

I would like to redirect my Dutch website.nl to website.com/nl/

But can't seem to find the right code to do this in htaccess.

Can someone help me with this?

Upvotes: 1

Views: 1036

Answers (1)

anubhava
anubhava

Reputation: 785376

Try this rule as your first rule:

RewriteCond %{HTTP_HOST} ^(www\.)?website\.nl$ [NC]
RewriteRule ^(.*)$ http://website.com/nl/$1 [L,NC,R=301]

Upvotes: 1

Related Questions