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]