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