(Sorry for my english)
I have lots of user reviews on my website and in some cases, there are more than a thousand reviews for a single product/service. I am looking for the best way to break down these reviews in several sub-pages.
Here are the options I thought of:
1. Break down reviews into multiple pages / URL
http://www.mysite.com/blue-widget-review-page1
http://www.mysite.com/blue-widget-review-page2
etc...
In this case, each page would be indexed by search engines.
- Pros: all the reviews are getting indexed
- Cons: It will be harder to rank for "blue widget review" as their will be many similar pages
2. Break down reviews into multiple pages / URL with noindex + canonical tag
http://www.mysite.com/blue-widget-review-page1
http://www.mysite.com/blue-widget-review-page2
etc...
In this case, each page would be set to noindex and the canonical tag would point to the first review page.
- Pros: only one URL can potentially rank for "blue widget review"
- Cons: Subpages are not indexed
3. Load all the reviews into one page and handle pagination using Javascript
reviews, reviews, reviews
more reviews, more reviews, more reviews
etc...
Each page would be loaded in a different
which would be shown or hidden using Javascript when browsing through the pages. Could that be considered as cloaking?!?
- Pros: all the reviews are getting indexed
- Cons: large page size (kb) - maybe too large for search engines?
4. Load only the first page and load sub-pages dynamically using AJAX
Display only the first review page on initial load. I would use AJAX to load additional reviews into the
. It would be similar to some blog commenting systems where you have to click on "Load more comments" to see all the comments.
- Pros: Fast initial loading time + faster loading time for subpages = better user experience
- Cons: Only the first review page is indexed by search engines
=========================================================
My main competitor who's achieving great rankings (no black hat of course) is using technique #3.
What's your opinion?