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.
同じサイトを指す2つのドメインを持つサイトがあります。としましょうdomain1.com&domain2.com
domain1.com
domain2.com
domain1.comに永続的にリダイレクトしたいdomain2.comので、Googleクローラーであっても、domain1からサイトにアクセスする人は誰でも、domain2にリダイレクトする必要があります。htaccessからこれをやりたいです。出来ますか?
はい、可能です。
.htaccessを入れて
RewriteEngine On RewriteCond %{HTTP_HOST} ^(www\.)domain1.com [NC] RewriteRule ^(.*)$ http://www.domain2.com/$1 [R=301,L]