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.
創業時はドメイン名をキーワードに取っていたのですが、今は社名でドメイン名を購入しており、旧ドメインからSEO値を引き継ぎ、両方のドメインを維持する方法を知りたいと思っています。はじめまして、よろしくお願いします!
URL 構造が同じままであると仮定すると、古いドメインから新しいドメインに 301 リダイレクトを行います。Apache を使用している場合は、これをルート Web ディレクトリの .htaccess ファイルに配置できます。
Options +FollowSymlinks RewriteEngine On RewriteCond %{HTTP_HOST} \olddomain.com$ RewriteRule ^(.*)$ http://newdomain.com/$1 [R=301,L]