Forum Moderators: open
Unfortunately many dynamically generated pages also include a lot of variables in the query string. That's what the search engines have problems with.
IMO a page that's a site map with all the URLs you want the search engines to spider is the best workaround.
[google.com...]
"We are able to index dynamically generated pages. However, because our web crawler can easily overwhelm and crash sites serving dynamic content, we limit the amount of dynamic pages we index."
So, what do you do if for example you run a e-commerce shop using dynamic pages? If your fortunate enough to being using an apache server you can consider using mod_rewrite:
[httpd.apache.org...]
"This module provides a rule-based rewriting engine to rewrite requested URLs on the fly."
Or, if you cant or dont want install mod_rewrite you can create a static version of your site:
[staticshell.com...]
It basically converts any dynamic site into a static version for search engines.
Good luck!