从测试站点重定向到生产站点
我在子域上有一个测试版网站,我准备将该网站从子域移动到生产网站。 谷歌已经对一些测试版页面建立了索引,并且它们将出现在搜索结果中。我想从测试版网站重定向到生产 URL 并向 Google 返回 302 代码,以保留链接。最好的方法是什么?
谢谢你!
I have a beta site on a subdomain and I'm ready to move the site from the subdomain to the production site.
Google has already indexed some of the beta pages and they are coming up in search results. I want to redirect from the beta site to the production URL and return a 302 code to Google, in order to retain the links. What would be the best way to do this?
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你在什么网络服务器上?如果您只希望生产网站出现在 Google 搜索结果中,您实际上需要发送 301 返回代码(永久重定向),以保持产品网站的页面排名。在此站点(或您最喜欢的搜索引擎)上搜索“mod_rewrite 规则”(Apache) 或“iis url 重写”。应该会出现很多关于如何设置重定向的想法。您肯定想发送 301 响应代码,以保持您的产品网站的页面排名。
What web server are you on? If you want only the production site to show up in Google search results, you will actually want to send 301 return codes (permanent redirects) in order to keep your page rank for the prod site. Perform a search on this site (or your favorite search engine) for either 'mod_rewrite rules' (Apache) or 'iis url rewrite'. Should turn up with plenty of ideas on how to setup your redirects. You for sure want to send the 301 response code though in order to keep your page rank with the prod site.