I was wondering if search engines respect the HTTP header field Content-Location.

This could be useful e.g. when you want to remove the session id argument out of the URL:

GET /foo/bar?sid=0123456789 HTTP/1.1
Host: example.com
…

HTTP/1.1 200 OK
Content-Location: http://example.com/foo/bar
…


Clarification:
I dont’t want to redirect the request as removing the session id would lead to a complete different request and thus probably also a different response. I just want to state that the enclosed response is also available under its “main URL”.

Maybe my example was not so good to show the intention of my question. So please take a look at What is the purpose of the HTTP header field “Content-Location”?.

link|improve this question

56% accept rate
Isn't this stretching the purpose of Content-Location a little bit? The spec makes it sound like there should be a bigger difference than just the query string. – Hank Gay Jan 13 '09 at 10:33
Removing the query was just an example. But may be I’ve misunderstood the purpose of Content-Location and it is not to provide the real location of the requested resource. – Gumbo Jan 13 '09 at 12:13
I think that's exact purpose, but I think the idea would be more like URI: foo.com/listOfStuff/indexOfResult (basically, identifying a specific member of a collection) Content-Location: foo.com/path/to/individualItem (basically, direct URI to resource) I think your idea is fine, tho. – Hank Gay Jan 13 '09 at 16:26
feedback

4 Answers

up vote 5 down vote accepted

I think Google just announced the answer to my question: the canonical link relation for declaring the canonical URL.

Maile Ohye from Google wrote:

MickeyC said...
You should have used the Content-Location header instead, as per:
http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html
"14.14 Content-Location"

@MikeyC: Yes, from a theoretical standpoint that makes sense and we certainly considered it. A few points, however, led us to choose :

  1. Our data showed that the "Content-Location" header is configured improperly on many web sites. Sometimes webmasters provide long, ugly URLs that aren’t even duplicates -- it's probably unintentional. They're likely unaware that their webserver is even sending the Content-Location header.

    It would've been extremely time consuming to contact site owners to clean up the Content-Location issues throughout the web. We realized that if we started with a clean slate, we could provide the functionality more quickly. With Microsoft and Yahoo! on-board to support this format, webmasters need to only learn one syntax.

  2. Often webmasters have difficulty configuring their web server headers, but can more easily change their HTML. rel="canonical" seemed like a friendly attribute.

http://googlewebmastercentral.blogspot.com/2009/02/specify-your-canonical.html?showComment=1234714860000#c8376597054104610625

link|improve this answer
Great to see the canonical-link support from google! – WaldenL Mar 17 '09 at 19:07
feedback

Most decent crawlers do follow Content-Location. So, yes, search engines respect the Content-Location header, although that is no guarantee that the URL having the sid parameter will not be on the results page.

link|improve this answer
feedback

In addition to using 'Location' rather than 'Content-Location' use the proper HTTP status code in your response depending on your reason for redirect. Search engines tend to favor permanent redirect (301) status vs temporary (302) status.

link|improve this answer
1  
Location: redirect. Content-Location: no redirect, specifying canonical address. – Piskvor Feb 3 '10 at 13:11
feedback

Try the "Location:" header instead.

link|improve this answer
That redirects, which the asker doesn't wish to happen. – ceejayoz Apr 5 '09 at 14:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.