Wordpress htaccess redirect top level domain to directory

独自空忆成欢 提交于 2019-12-11 10:12:34

问题


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]


来源:https://stackoverflow.com/questions/21392391/wordpress-htaccess-redirect-top-level-domain-to-directory

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!