Results 1 to 12 of 12

 

Thread: Google and Dynamic Web Pages

  1. #1
    Registered User

    Status
    Offline
    Join Date
    Mar 2006
    Posts
    30
    Thanks
    0
    Thanked 0 Times in 0 Posts


    Hi
    I'm new to Affiliate marketing, but have developed web pages for many years. I am about to setup a new site.

    The problem is quite a lot of the content is going to be dynamic (ASP.Net 2.0) and drawn from a back end database. The Google spider didn't used to crawl dynamic pages is this still the case. I notice a lot of other affilate sites are using PHP so presumably these must get crawled and subsequently ranked.

    If it is true then dynamic pages are not going to get ranked by google then it's back to the drawing board!!

  2. #2
    data muncher

    Status
    Offline
    Join Date
    Sep 2004
    Location
    Berlin
    Posts
    2,475
    Thanks
    0
    Thanked 0 Times in 0 Posts
    They dont seem to rank as high as a static page if you take like for like content. It s not true that dynamic pages don't get ranked, indeed some of the most highly ranked sites are dynamic such as this site for example. ( i guess you missed this one ).

    Having said that use your asp equivalent of mod_rewrite, we mask all of our urls using this and also hide the parameters within the urls so to all intents and purposes it appears as a static html page without complications.

    I think for the most of it dynamic pages cause bots a lot more work to work out which url is actually the real url as some dynamic pages could be page=1 but others could be page=1&showvalues=2 which could just be the same page but with a different price for buying two items for example. If the bot was not clever enough to work out that it is the same page then google etc would be a hundred times more full of junk than they are now, fortunately they are seemingly better at it but i think you can see its lots more work for them. Do a search for mod_rewrite to see how that works and then look for the asp version of it. I haven't a clue about asp so i cant really help with that.
    Nothing to see here...

  3. #3
    andysears's Avatar
    Registered User

    Status
    Offline
    Join Date
    Dec 2005
    Location
    Herts UK
    Posts
    374
    Thanks
    3
    Thanked 2 Times in 2 Posts
    I once had a DIY holiday site and had ASP dynamic pages on that, a particular page generated a Calendar. Google seemed to befriend it.

    cal.asp sears-online entered into google results in 1240 results each with a different date.
    _________________________________________
    Salou, Cambrils and PortAventura

  4. #4
    Registered User

    Status
    Offline
    Join Date
    Mar 2006
    Posts
    48
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Hi there. Google does not penalize dynamic pages in anyway, as long as you let it crawl them properley. The only problems are if you use multiple query strings in a single URL, Google doesn't like that or if the spider gets stuck in a potential "loop".

    If you are using ASP/.NET you can use IIS rewrite instead of mod_rewrite, this will make your URLs appear as nice static HTML pages. My advice would be keep query strings and "ID=" to a minimum and upload a full sitemap, as well as having an onpage sitemap.

  5. #5
    Registered User

    Status
    Offline
    Join Date
    Oct 2006
    Posts
    31
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Hi, I am just looking at using a dynamic page for the first time and I am also concerned about google. What is "multiple query strings in a single URL" and what do they look like? I was going to use the data feed from affiliate window.
    Cheers, Phil.

  6. #6
    accelerator's Avatar
    Online shopping rocks!

    Status
    Offline
    Join Date
    Nov 2004
    Location
    England
    Posts
    3,031
    Thanks
    54
    Thanked 183 Times in 164 Posts
    Quote Originally Posted by ejmo View Post
    Hi, I am just looking at using a dynamic page for the first time and I am also concerned about google. What is "multiple query strings in a single URL" and what do they look like? I was going to use the data feed from affiliate window.
    Cheers, Phil.
    Stuff like:

    mypage.asp?myvariable1=1&myvariable2=2&myvariable3 =3

    Just remember that a spider can't select on page elements etc, it can't go through forms easily, so make sure it can just go through the site by following simple links.

    You will find more useful comments on Matt Cutts blog.

    http://www.mattcutts.com/blog/

    Rgds

    Accelerator

  7. #7
    tbp
    Registered User

    Status
    Offline
    Join Date
    Dec 2006
    Posts
    1,998
    Thanks
    0
    Thanked 22 Times in 22 Posts
    Google can index dynamic sites fine, just restrict pages you don't want the spider to index with meta tags or robots.txt file.

    Remember not to use the parameter id= , as pages with an id parameter are not indexed by google as it assumes its a unique session identifier.

  8. #8
    Registered User

    Status
    Offline
    Join Date
    Jun 2006
    Posts
    97
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Install ISAPI_REWRITE from Helicon on your server, it's IIS's equivalent to mod_rewrite. So you can use friendly urls e.g.

    site.com/products/a-cool-product-you-should-buy/

    Hope that helps

    Edit:

    Oh and don't use postbacks for navigation etc if you're using ASP.NET, and try to stear clear of the more advanced controls and stick to literals and repeaters, so it keeps your code clean and doesn't clutter up the viewstate too much.

  9. #9
    Registered User

    Status
    Offline
    Join Date
    Aug 2004
    Posts
    83
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Quote Originally Posted by tbp View Post
    Remember not to use the parameter id= , as pages with an id parameter are not indexed by google as it assumes its a unique session identifier.
    There are loads and loads of pages indexed by Google with the id= parameter. I have a load in there myself.

  10. #10
    Banned

    Status
    Offline
    Join Date
    Nov 2003
    Location
    Bucharest, Romania
    Posts
    2,669
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Quote Originally Posted by IntervisionMedia View Post
    Install ISAPI_REWRITE from Helicon on your server, it's IIS's equivalent to mod_rewrite. So you can use friendly urls e.g.

    site.com/products/a-cool-product-you-should-buy/

    Hope that helps

    Edit:

    Oh and don't use postbacks for navigation etc if you're using ASP.NET, and try to stear clear of the more advanced controls and stick to literals and repeaters, so it keeps your code clean and doesn't clutter up the viewstate too much.
    http://www.helicontech.com/order/#isapi_rewrite

    I don't suppose there's anything free that will do the same thing is there and is it automatic after install or do I have to fiddle a bit? (steady) And I presume if I have 100 websites on cpanel, then that counts as one licence perhaps? The latter is a yes, if hostroute will allow. And I think I'll have to fiddle.
    Last edited by Lee_Owen; 23-02-07 at 08:24 PM.

  11. #11
    Banned

    Status
    Offline
    Join Date
    Nov 2003
    Location
    Bucharest, Romania
    Posts
    2,669
    Thanks
    0
    Thanked 0 Times in 0 Posts
    I note there's a free version, ISAPI_Rewrite Lite ( freeware ) if I bung that on will that simply change the urls to read, product title? or do I need the paid version, apologies for asking questions here... but not many.

  12. #12
    Typing with both fingers.

    Status
    Offline
    Join Date
    Aug 2003
    Location
    Allt Y Coed Farm, North Pembrokeshire
    Posts
    4,123
    Thanks
    247
    Thanked 198 Times in 157 Posts
    Does anybody know what happened to iismods.com, I once used that on a few small Price Tapestry sites and it worked ok, now the website has gone.

    If I write my own site I always use custom 404's to rewrite the urls on my windows box as 'static' urls are a lot easier to monitor in your logs and optimise, however the Pricerunner script I have at the moment I can't be bothered to modify it to work with a custom 404 so I am going to go with dynamic url's. One thing I am watching is to stop 'loops' as has been said. For example any pages that have been sorted by the eg 'price' column as oppossed to just the normal alphabetical list has a noindex command in to try and stop indexing of duplicate content and bots getting stuck in one particular part of the site.

    All in all I dont think there is much difference these days in how google 'sees' dynamic pages as oppossed to 'static' ones.

    Ta



Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Do dynamic pages use same bandwidth as static?
    By Elaine in forum Programming
    Replies: 4
    Last Post: 23-08-04, 11:52 AM
  2. Google Adwords Dynamic wording
    By ipnpal in forum Media Coverage & PR Strategy
    Replies: 1
    Last Post: 24-07-03, 12:00 AM

Bookmarks

Posting Permissions

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

Content Relevant URLs by vBSEO 3.5.0 RC2