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 年前檢視次數 2418 次
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
專家
已審閱 20 天前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南