I have a couple of questions about Ajax crawling of site, which is kind of search engine itself.
The base article explains the mechanism of making AJAX application crawlable. All this stuff with HTML-snapshots is clear and easy to implement, but I cant understand where will Google bot will get "the crawler finds a pretty AJAX URL"( ie www.example.com/ajax.html#key=value) to work with.
First thing, that came on mind - is breadcrumb. In sitemap we can specify pages with breadcrumb on it. so bot will go to these pages and get HTML-snapshots from here.
But I'm sure, there are exists other ways to give bot this "pretty AJAX URL".
In our case, we have simple search site, where user enters keyword, presses "Find", js execute Ajax request, receives JSON reponce and fill page with results(without any refresh of course).
In this case - how to make google bot crawle all the presults in addition to sitemap?
Is there some example of solution, described in article above?