Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

It's well known that the URL fragment (the part after the #) is not sent to the server. I do wonder though how fragments work when a server redirect (via HTTP status 302 and Location: header) is involved.

My question is really two-fold:

A: If the original URL had a fragment (/original.php#foo), and a redirect is made to /new.php, does the fragment part of the original URL simply get lost? Or does it sometimes get applied to the new URL? Will the new URL ever be /new.php#foo in this case?

B: Regardless of the original URL, if the server redirects to a new URL with a fragment (/new.php#foo), will the fragment get "honored"? Or does the server really have no business interfering with the fragment at all - and will the browser therefore ignore it by simply going to /new.php?

share|improve this question
1  
just to be clear, – tobyodavies Oct 14 '10 at 4:37
1  
Here you can find spec by W3C: w3.org/TR/cuap#uri clause 4.1. the fragment should be preserved on redirect. – Marcin Jul 1 '12 at 17:21
@Marcin: W3C TAG suggest differently: lists.w3.org/Archives/Public/ietf-http-wg/2010OctDec/0504.html. Related question: Is a 302 Redirect to relative URL valid, or invalid? – hakre Dec 17 '12 at 2:19

3 Answers

up vote 35 down vote accepted
+150

this is an open (not specified) issue with the current HTTP specification. it is addressed in 2 issues of the IETF httpbis working group:

#6 allows fragments in the Location header. #43 says this:

I just tested this with various browsers.

  • Firefox and Safari use the fragment in the location header.
  • Opera uses the fragment from the source URI, when present, otherwise the fragment from the redirect location
  • IE (8) ignores the fragment in the location URI, thus will use the fragment from the source URI, when present

Proposal:

"Note: the behavior when fragment identifiers from the original URI and the redirect need to be combined is undefined; current User Agents indeed differ on what fragment takes precedence."

[...]

It appears that IE8 does use the fragment idenfitier from Location (the behavior I saw might be limited to localhost).

Thus we seem to have consistent behavior for Safari/IE/Firefox/Chrome (just tested), in that the fragment from the Location header gets used, no matter what the original URI was.

I therefore change my proposal to document that as expected behavior.

this leads to the most browser compatible and future proof (because this issue will eventually get standardized) answer to your question:

A: fragments from original URLs get discarded.

B: fragments from the Location header are honored.

share|improve this answer
1  
I had forgotten about some "rewrite" rules I set in HTTP servers, which were probably implemented as 301 redirect. As a consequence IE kept losing fragment identifier because when you have multiple redirects, the fragments set by the first redirect becomes part of the source URI in the second. – Eugene Yokota Apr 9 '11 at 9:25
It is addressed by W3C spec in here: w3.org/TR/cuap#uri – Marcin Jul 1 '12 at 17:20
opera 12.12 honors the fragment in the location header when present. – chris Dec 28 '12 at 23:21

Safari 5 and IE9 and below drop the original URI's fragment if a HTTP/3xx redirect occurs. If the Location header on the response specifies a fragment, it is used.

Chrome 11, Firefox 4, and Opera will all "reattach" the original URI's fragment after following a 3xx redirection.

Test page: https://www.fiddler2.com/test/redir/fragment/

share|improve this answer

Just to let you know, here you can find proper spec. by w3c defining how all should behave: http://www.w3.org/TR/cuap#uri - clause 4.1

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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