0

我最近索引了我的网站。

Google 已将主站点编入索引为: www.site.com/ ?ref=old

是否有可能在我的谷歌网站管理员工具中让谷歌忽略: www.site.com/?ref=old但仍然索引www.site.com

我如何实现这一目标?

有点害怕使用 URL 参数选项。

非常感谢这里的任何指示:-)

4

1 回答 1

0

你可以把它放在你的旧网站上:

<?php
header( "Status: 301 Moved Permanently" );
header( "Location: http://www.yoursite.com/" );
exit(0);
?>

或者 .htaccess 文件应该可以解决问题。

RewriteEngine On
RewriteCond %{QUERY_STRING} ^ref=old
RewriteRule ^index\.php$ http://www.yoursite.com/ [L,R=301]

(未测试)

但是,GWT 参数也是一个不错的选择,可以让它不爬取 ?ref=old

于 2012-04-11T08:23:36.083 回答