While processing page A in my server, I realize that I need to redirect the user to page B (both under the same domain own by me).
If I trigger the following code:
Code: Select all
header("Location: http:// <my domain> /B.php");
exit;I was wondering if there is a possiblity to redirect to a page without performing the extra trip to the server. Here is my rationale: since I am already in the server when I am processing page A and page B is a page under the same domain as page A, then I don't see a reason why I should be able to do it.
I would appreciate any thoughts and help on this issue