Will a 302 redirect maintain the referer string?
I need to redirect the user from one page to another, but I need to maintain the original referer string. So, for example, if they start out on http://www.othersite.com/pageA.jsp , click a link that takes them to http://www.mysite.com/pageB.jsp , which then executes a 302 redirect to http://www.mysite.com/pageC.jsp , I need the referer string to contain " http://www.othersite.com/pageA.jsp " Is this the normal behavior for a 302 redirect? Or would my original referer get dropped, in favor of " http://www.mysite.com/pageB.jsp " ? That would not be desirable. I don't know if it makes any