在我的网站example.com
上,没有www2.example.com
,ww4.example.com
等域名,但Google搜索会显示此类网页。
显然网站确实有这样的页面(example.com
的副本)所以如何阻止这个?它看起来是一些http
访问问题
答案 0 :(得分:0)
您可以使用htaccess为这些子域生成403或404,这将使Google从其索引中删除它(可能需要一点时间):
RewriteEngine on
RewriteCond %{HTTP_HOST} ^ww(w2|4)\.example\.com$
RewriteRule . - [F] # will generate 403 forbidden