Forum Moderators: open
Is it possible that cookies or other code is causing the Google bot to rebuff my pages? Any other factors to consider when creating "spider friendly" jsp pages?
This is one of the primary examples where you can see how badly the bots deal with dynamic content sites.
On some sites I have broken it down to use multiple templates through out the site and it has helped.
mod_rewrite on them has yet to let me down.
For sites that I build from the ground up I make them all individual named pages (for the most part) and then include the template. Though I understand that this is not an option for a large, already existing site.
I would think your best bet would be mod_rewrite.
ie
these urls
pagetemplate.jsp?page_id=123
pagetemplate.jsp?page_id=125
pagetemplate.jsp?page_id=137
pagetemplate.jsp?page_id=392
could become
pagetemplate.jsp/page_id/123/
or
pagetemplate/125.htm
or
/137.htm
all depends on how you end up writing your rules.