Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的网站上example.com,没有这样的域www2.example.com,ww4.example.com但谷歌搜索显示了这样的页面。
example.com
www2.example.com
ww4.example.com
显然该网站确实有这样的页面(重复example.com)那么如何阻止呢?似乎是一些http访问问题
http
您可以使用 htacces 为这些子域生成 403 或 404,这将使 google 从他的索引中删除它(可能需要一点时间):
RewriteEngine on RewriteCond %{HTTP_HOST} ^ww(w2|4)\.example\.com$ RewriteRule . - [F] # will generate 403 forbidden