Ajax x SEO (Search Engines)

2

Well, does Google (or another search engine) evaluate the page when it finishes loading or does it just grab the generated HTML copy (dynamically generated page, PHP for example) and does your analysis?

I have a document that runs 4 Ajax calls to load information (product details, description of this, similar products and comments) right after DOM has been loaded.

This information is important for the search, as it may interfere with the rank of the page (it's product info ..).

I've heard of pushState() , which creates a new point in the history, changing the current URL without refreshing the page, and I've seen people relate this as a good practice for Ajax to relate well to search engines, but I'm confused at to use.

    
asked by anonymous 07.05.2015 / 05:15

1 answer

-1

Generally, Search Engine does not find content uploaded via AJAX, a solution to this problem would be: Build a structure of links and directories that search engines can navigate. This solves two situations: the search engine's own navigation; and user navigation, which, for agility purposes may want to directly access specific content of the site, through the link, something that ajax by itself does not allow, since it does not change the URL while using the site.

Full content links

AJAX x SEO PT-br

Discuss the same topic in Google Groups

AJAX x SEO English

    
07.05.2015 / 12:36