Google's Complex URLs
Moderator: General Moderators
- Ambush Commander
- DevNet Master
- Posts: 3698
- Joined: Mon Oct 25, 2004 9:29 pm
- Location: New Jersey, US
Google's Complex URLs
First of all, Google isn't web standards compliant (but then again, neither are the DevNetwork Forums). But that's not really my question.
I'm just wondering: why does Google insist on dumping loads of extra parameters in my query strings? For instance, I google "php" from my FireFox search bar, and I get this URL:
http://www.google.com/search?q=php&star ... S:official
A bit long, don't you think? Even a google from the front page gives you this:
http://www.google.com/search?biw=984&hl ... gle+Search
Now, I don't know what half these parameters mean, but I do know that all I need is the "q" param, that is:
http://www.google.com/search?q=php
Will work perfectly fine. So why all the extra parameters? Have you ever run into this problem in web programming?
I'm just wondering: why does Google insist on dumping loads of extra parameters in my query strings? For instance, I google "php" from my FireFox search bar, and I get this URL:
http://www.google.com/search?q=php&star ... S:official
A bit long, don't you think? Even a google from the front page gives you this:
http://www.google.com/search?biw=984&hl ... gle+Search
Now, I don't know what half these parameters mean, but I do know that all I need is the "q" param, that is:
http://www.google.com/search?q=php
Will work perfectly fine. So why all the extra parameters? Have you ever run into this problem in web programming?
-
method_man
- Forum Contributor
- Posts: 257
- Joined: Sat Mar 19, 2005 1:38 am
-
method_man
- Forum Contributor
- Posts: 257
- Joined: Sat Mar 19, 2005 1:38 am
if you look they aren't so strange at all
- one is your query
- one is the start index
- two are the character encoding
- one is the language (or something like that)
- one is the browser
they probably send those parameters to track down if they need any "fixes" on the sight (such as with CSS and so on), I wouldn't think they used it for statistics, they wouldn't have used them as variables then.
- one is your query
- one is the start index
- two are the character encoding
- one is the language (or something like that)
- one is the browser
they probably send those parameters to track down if they need any "fixes" on the sight (such as with CSS and so on), I wouldn't think they used it for statistics, they wouldn't have used them as variables then.
don't get me wrong, I love google...well I should say I have a love/hate relationship with it.
I love it cause I use it all the time, I hate it cause it's tough to get ranked well on it for any consistently long period of time.
I've had a really hard time since the Florida update a few years back, damn Florida update nearly put me out of business...I hate google.
ok, I gotta go find a new hard drive, anyone know a good search engine to look on?
I love it cause I use it all the time, I hate it cause it's tough to get ranked well on it for any consistently long period of time.
I've had a really hard time since the Florida update a few years back, damn Florida update nearly put me out of business...I hate google.
ok, I gotta go find a new hard drive, anyone know a good search engine to look on?
not arguing for the sake of arguing, but what difference is there in tracking down fixes with url params and collecting stats with url params. obviously they could do either/both w/o the url params, so I guess I don't see your point?Syranide wrote:they probably send those parameters to track down if they need any "fixes" on the sight (such as with CSS and so on), I wouldn't think they used it for statistics, they wouldn't have used them as variables then.
only thing I can think is let's say someone just copies the url and sends it to a friend or pastes it for later viewing: with everything in the url, they could better "track" info, which really doesn't make a helluva lotta sense given that the friend might be running netscrape etc.
I don't have a clue, just speculating...
- Ambush Commander
- DevNet Master
- Posts: 3698
- Joined: Mon Oct 25, 2004 9:29 pm
- Location: New Jersey, US