0

I am using ajax-solr to generate search results from Solr.

Is there any way to make such an ajax page available to Google (and search engines in general) for indexing?

Thanks.

Continuation
  • 12,722
  • 20
  • 82
  • 106

2 Answers2

1

Not sure how this maps to ajax-solr specifically, but take a look at "Making AJAX Applications Crawlable", it explains how googlebot can crawl and index ajax websites.

Still, I think the safest way is to implement graceful degradation of ajax functions, unfortunately I don't think this is doable in a pure ajax-solr site.

Mauricio Scheffer
  • 98,863
  • 23
  • 192
  • 275
0

I think the easiest solution is to use Google Sitemaps and create alternative representations of the Solr database's contents (i.e. have one URL for each document in the Solr database). In other words, don't try to make make the ajax-solr page indexable by Google.

James McKinney
  • 2,831
  • 1
  • 18
  • 8