wordpress 我如何重定向我的xxxx.NL网站到xxxx.COM网站与.htaccess文件?

7kqas0il  于 2023-03-17  发布在  WordPress
关注(0)|答案(1)|浏览(216)

我们想将.nl域名更改为.com
我有一个以. nl结尾的网站。我想将所有内容重定向到. com。所以例如,如果有人访问“crossborderevent.nl/about-us“,他们将被重定向到“crossborderevent.com/about-us“。
有人知道如何用.htaccess文件实现这一点吗?
我已经尝试了下面的代码,但它不工作:

<IfModule mod_rewrite.c>
  RewriteEngine On
  RewriteCond %{HTTP_HOST} ^crossborderevent.nl [OR]
  RewriteCond %{HTTP_HOST} ^www.crossborderevent.nl
  RewriteRule (.*)$ https://www.crossborderevent.com/$1 [R=301,L]
</IfModule>
k5ifujac

k5ifujac1#

你可以试试这个:

RewriteEngine On
RewriteBase /

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

此规则将每个请求从www.example.com重定向example.nl到example.com

相关问题