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.
我需要 301 代码将旧域重定向到包含所有页面和文件夹的新域。
好像哪里都找不到
此外,如果我使用 301 重定向,我会因此失去关键词排名或排名吗?
(我的意思是从3 年前的域名转移到2 天前的域名)?
将其放在您的根 Web 目录中的 .htaccess 文件中:
RewriteEngine On RewriteCond %{HTTP_HOST} ^olddomain.com$ [OR] RewriteCond %{HTTP_HOST} ^www.olddomain.com$ RewriteRule (.*)$ http://www.newdomain.com/$1 [R=301,L]
你的排名会先波动,因为过渡从来都不是一帆风顺的。但最终你的排名应该恢复正常。