I've created a CloudFront distribution with the Delivery Method set to download from my website.

I only want to use this for static content (images, js, css).

But I just saw that Google has been indexing 4 versions of my whole site:

http://www.example.com/mypage.html
http://cdn1.example.com/mypage.html
http://cdn2.example.com/mypage.html
http://cdn3.example.com/mypage.html
http://cdn4.example.com/mypage.html

I don't want this -- How can I have Amazon only do the distribution for my static content?

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

Here's how I make sure there is only one version of my web site when using Amazon CloudFront.

HTML pages are only served from www.example.com. CSS, JavaScript, images, etc. are served through the CloudFront CDN which has its origin server set to the primary web server using a different virtual host name.

Here are the different host names and what is serving and served by each:

  • www.example.com - Pages served by EC2 instance. Primary web site name visited by users and by Google.

  • cdn1.example.com, cdn2.example.com, etc. - CNAME to Amazon CloudFront distribution. HTML pages served from www.example.com will point to these host names for CSS, JavaScript, images, etc.

  • origin.example.com - Resolves to same EC2 instance as www.example.com using a different virtual host in Apache. Serves up CSS, JavaScript, images, etc. This is the name we tell CloudFront to use as its origin server. Important! If an HTML page is requested from this virtual host, we redirect the user to www.example.com.

The trick here is to use one host name for users to access your web site and another host name for CloudFront to access your web site. If users try to go through CloudFront for your primary HTML pages, they get redirected to your primary host name, so Google only sees a single site.

link|improve this answer
feedback

I would venture to guess that CloudFront is doing just what you asked it to, and cdn1 to cdn4 are just the CNAMEs you created for your distribution. CloudFront also uses the cache control HTTP headers your origin server sends to determine which files should be cached for how long. Most likely your .html is set as cached with no expiration date, thus CF will copy it to the distribution subdomains as well. Hence the four copies.

Of course, Google has no idea that these are just copies of your original content. Which leads to the four cdn subdomain being indexed as well.

You can do two things:

  • use the cache control headers to manage the lifetime of the CF copies or even exclude the content from CF cache. (Note however that the latter will also exclude it from the local browser cache) This will still not change Google behaviour in any way, thoug.
  • use link rel="canonical" to suggest to Google that the content of the four cdn subdomains is same/very similar to the origin content and indexing should prioritize the origin domain. (http://support.google.com/webmasters/bin/answer.py?hl=en&answer=139394)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.