This is a discussion on What is considered dynamic and what sort of bias does google haveagainst it within the alt.comp.lang.php forums, part of the PHP Programming Forums category; If google has a specific bias against cataloging dynamic pages, then I am interested in creating dynamic pages that appear ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
If google has a specific bias against cataloging dynamic pages, then I am interested in creating dynamic pages that appear to be static. Some examples that come to mind would be: 1. http://site.com/page.php/3.html 2. http://site.com/page.php/3 Do either of these have a better chance of getting cataloged than: 3. http://site.com/page.php?id=3 I have seen examples of #2 and #3 cataloged, although google literature seems to discourage 'dynamic content'. What specifically does this mean: 1. Reasons your site may not be included. * Your pages are dynamically generated. 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. ( from: http://www.google.com/webmasters/2.html) A related links: http://www.webmasterworld.com/forum5/4011.htm |
|
|||
|
John Rigler wrote:
> > If google has a specific bias against cataloging dynamic pages, then I > am interested in creating dynamic pages that appear to be static. Some > examples that come to mind would be: > > 1. http://site.com/page.php/3.html > 2. http://site.com/page.php/3 > > Do either of these have a better chance of getting cataloged than: > > 3. http://site.com/page.php?id=3 > > I have seen examples of #2 and #3 cataloged, although google literature > seems to discourage 'dynamic content'. What specifically does this mean: > > 1. Reasons your site may not be included. > > * Your pages are dynamically generated. 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. > > ( from: http://www.google.com/webmasters/2.html) > > > A related links: > > http://www.webmasterworld.com/forum5/4011.htm > > Take a look at apache's mod_rewrite. It basically lets you use urls like http://www.example.org/script/1, and remaps them internally to http://www.example.org/script.php?q=1, so dynamic content appears static. But, it *IS* rather hard to configure correctly, but it is *VERY* useful once you tame the wee beast. |