How to avoid google to index cloudfront served content

0

Hello all, A customer whose cloudfront served pages are also being indexed and cached by google. So a google search for them provides 2 entries:

  1. https://www.domain.com/
  2. https://d12345.cloudfront.net/

Is there anyway to block the second cloudfront location from being cached? I've read on stackoverflow on using bots to avoid that: https://stackoverflow.com/questions/60123731/google-indexing-cloudfront-distribution AND Using DNS redirectionto avoid that: https://medium.com/tensult/how-to-do-site-redirection-using-aws-522a4002c645

Is there an easier way to do this?

AWS
Alok_T
已提问 3 年前2403 查看次数
1 回答
0
已接受的回答

Yes, there are few things to be done to avoid this from happening:

  1. Origin needs to be locked to the outside internet, except Cloudfront IPs. It appears that Google is able to reach the Origin directly.
  2. Validate if the *.cloudfront.net URLs are a part of the publishing code anywhere. If so, replace them with the Cloudfront - fronted domain names.
  3. Put a robots.txt on Amazon S3. Something like, the www.domain.com/robots.txt

I would not recommend putting Origin redirection etc. coz there is no reason for anyone to hit the Origin directly. It is also an open backdoor for the malicious actors to get through.

Once you do #01, #02, #03; the indexing of the Origin URLs will gradually go away. Also I believe, they can also reach out to Google (after doing 1, 2, 3) to remove those URLs from their search feeds.

AWS
已回答 3 年前
profile picture
专家
已审核 16 天前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则