Mobile app version of vmapp.org
Login or Join
Deb1703797

: How strict is the "same content" requirement for Google HTML snapshots? Can pared down HTML with the same text be used? Are there any requirements for a HTML snapshot for Google other than:

@Deb1703797

Posted in: #GoogleSearch #Html #Seo

Are there any requirements for a HTML snapshot for Google other than:


.. must contain the same content as the dynamically created page ..


found here: developers.google.com/webmasters/ajax-crawling/docs/html-snapshot?hl=nl
There is also a question found here: Content of html snapshot for Search engines But is does not really answers my question.

So what about the structure and layout? Or can I just make a stripped down version with plain HTML.

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Deb1703797

1 Comments

Sorted by latest first Latest Oldest Best

 

@Heady270

Google has the "same content" policy in place to prevent cloaking:


Does this scheme open the door to cloaking?

Cloaking is serving different content to crawlers than to users in response to a given URL. This is generally done with the intent of boosting one's ranking in search results. Cloaking has always been (and will always be) an important issue for search engines, and it's important to note that making AJAX applications crawlable is by no means an invitation to make cloaking easier. For this reason, the HTML snapshot must contain the same content as the end user would see in a browser. If this is not the case, it may be considered cloaking. See our article on cloaking for more details.


Google cares most about including text content and links that are not shown to the user. That is a big no-no that can get your site thrown out of the Google index. Using a pared down markup with the same text for HTML snapshots passes my sniff test. It isn't deceptive. It isn't designed to make your site rank higher. I would be inclined to implement it that way if it makes the development easier.

You would want to include all the tags that Google might possibly care about for ranking purposes. Links (<a>) would be especially important to include just as shown to the user. I would also include images (<img>), headers (<h1>, <h2>,<h3>, etc) as well as block level tags that break content into sections.

From a change managament perspective, you also want to make sure that any time you make a change for users, you also make the corresponding change to the HTML snapshots. Using a method that produces pared down HTML implies that you are not actually generating the snapshots from the UI and that there is a separate development for it. That sounds like a problem waiting to happen to me.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme