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”?.