Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个站点,其中有两个域指向同一个站点。让我们说domain1.com&domain2.com
domain1.com
domain2.com
我想对 to 进行永久重定向domain1.com,domain2.com以便任何从 domain1 访问该网站的人,即使是 Google 爬虫,也应该将其重定向到 domain2。我想从 htaccess 做到这一点。可能吗?
是的,这是可能的。
放入你的 .htaccess
RewriteEngine On RewriteCond %{HTTP_HOST} ^(www\.)domain1.com [NC] RewriteRule ^(.*)$ http://www.domain2.com/$1 [R=301,L]