I recently needed to do a redirect in php using:
header("Location: http:/relative/path");
which seems to work in all the browsers I have available to me (Safari, Chrome, Firefox). This also works when used in a standard link:
<a href="http:/relative/path">Link to relative path</a>
My question is whether this is a fluke, or a formal implementation. I need to confirm to my superiors that this is a known standard.
Thanks!