Forum Moderators: open
When drilling down to the last 2 pages there are 3 and 4 separate parameters necessary depending on the page. Is this too many? Can anyone take a look and see if I'm missing something obvious?
These 2 pages represent 75% of my site content and I would very much like to have them indexed.
I am betting this is your problem. Try and keep the url string as short as you can. You can do this a number of ways such as
1) using ID numbers instead of words, eg., instead of Country=America, try Id=4 (assuming 4 equates to America)
2) concetanting your query string and then strip it apart again at the server, eg., instead of Country=America&Transport=Road&Fuel=Wind , try ID=4t3f5 (assuming Road = t3 and Wind = f5), then split the string at the server using letters as split points and get the info from the database that way.
There are lots of things you can do, put your thinking cap on and try the search feature here for dynamic URLs to get more ideas.
Onya
Woz
PS., we generally don't do site reviews here so let's keep the discussion general, OK.