Wordpress htaccess redirect top level domain to di

2019-08-07 08:18发布

问题:

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?

回答1:

Try this rule as your first rule:

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