What is considered dynamic and what sort of bias does google haveagainst it

Ask a Question related to PHP Development, Design and Development.

  1. #1

    Default What is considered dynamic and what sort of bias does google haveagainst it


    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. [url]http://site.com/page.php/3.html[/url]
    2. [url]http://site.com/page.php/3[/url]

    Do either of these have a better chance of getting cataloged than:

    3. [url]http://site.com/page.php?id=3[/url]

    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: [url]http://www.google.com/webmasters/2.html[/url])


    A related links:

    [url]http://www.webmasterworld.com/forum5/4011.htm[/url]


    John Rigler Guest

  2. Similar Questions and Discussions

    1. Datagrid Sort problem with Dynamic
      I have a datagrid on an asp page defined as follows: <asp:datagrid id="DataGrid1" runat="server" BackColor="DeepSkyBlue" BorderStyle="Ridge"...
    2. Sort not firing PostBack event using Dynamic Columns
      I am having a problem with the DataGrid control and sorting, and have found it's realted to if you use dynamic columns or not. If I set the columns...
    3. dynamic time/date variable to sort records by
      I posted a question on this some months ago but didn't get a good answer. I have a very basic personal weblog on my website using a PHP script and...
    4. Ado sort error-Ado Sort -Relate, Compute By, or Sort operations cannot be done on column(s) whose key length is unknown or exceeds 10 KB.
      Ado Sort -Relate, Compute By, or Sort operations cannot be done on column(s) whose key length is unknown or exceeds 10 KB. hi, guys i have asp...
    5. Sound cue points and Bias Peak
      Hi, I have a project coming up that will require using cue points to synchronize media. The project was previously done in Director 7 on the Mac...
  3. #2

    Default Re: What is considered dynamic and what sort of bias does googlehave against it

    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. [url]http://site.com/page.php/3.html[/url]
    > 2. [url]http://site.com/page.php/3[/url]
    >
    > Do either of these have a better chance of getting cataloged than:
    >
    > 3. [url]http://site.com/page.php?id=3[/url]
    >
    > 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: [url]http://www.google.com/webmasters/2.html[/url])
    >
    >
    > A related links:
    >
    > [url]http://www.webmasterworld.com/forum5/4011.htm[/url]
    >
    >
    Take a look at apache's mod_rewrite.

    It basically lets you use urls like [url]http://www.example.org/script/1[/url], and
    remaps them internally to [url]http://www.example.org/script.php?q=1[/url], so
    dynamic content appears static.

    But, it *IS* rather hard to configure correctly, but it is *VERY* useful
    once you tame the wee beast.
    Milambar Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139