0

在我的网站上example.com,没有这样的域www2.example.comww4.example.com但谷歌搜索显示了这样的页面。

显然该网站确实有这样的页面(重复example.com)那么如何阻止呢?似乎是一些http访问问题

4

1 回答 1

0

您可以使用 htacces 为这些子域生成 403 或 404,这将使 google 从他的索引中删除它(可能需要一点时间):

RewriteEngine on
RewriteCond %{HTTP_HOST} ^ww(w2|4)\.example\.com$
RewriteRule . - [F] # will generate 403 forbidden
于 2012-09-07T13:39:28.863 回答