我最近索引了我的网站。
Google已将主网站编入索引: 的 www.site.com/?ref=old
我的Google网站管理员工具是否可以让Google忽略: www.site.com/?ref=old 但仍然在索引 www.site.com ?
我如何实现这一目标?
有点害怕使用URL参数选项。
非常感谢这里的任何指示: - )
答案 0 :(得分: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
的好选择