3

I have a wordpress site for example www.example.com and it has more than 300 pages. I have installed a copy of our entire www.example.com site on a subdomain of the US site. For example the subdomain is http://abc.tm.org/ and this subdomain contain all the contents of example.com

Now is there any way to redirect my whole example.com site to abc.tm.org site? I want to use 301 rel=canonical redirect. Otherwise google may bann my site for duplicate content.

4

1 回答 1

1

首先, 301 和 rel=canonical 是两个不同的东西。如果您只想复制网站,而不是移动它,只需放置一个规范标签,例如:

<link rel="canonical" href="http://www.example.com/original-page-url/"/>

在新的 abc.tm.org 网站上,它可以解决问题并阻止 google 生气。它基本上是在告诉谷歌“那是原始页面,你现在所在的这个 URL 也指向它”。...因此不会对重复内容进行处罚。

如果您想对整个原始站点进行 301 处理以便重定向用户,您需要在 .htaccess / apache 配置中添加一条规则。像这篇文章这样说: http ://webdesign.about.com/od/mod_rewrite/qt/site_redirects.htm

希望有帮助!

于 2012-09-23T17:23:59.447 回答