Does any of you know how to mask a URL in php?? Like the one you see in free URL redirectional services
I mean I have a url like http://www.my-server.com/
which will redirect me to http://www.some-other-server.com/abc.php
by the following PHP command
header("location: http://www.some-other-server.com/abc.php");
But I want the URL in the address bar of my browser to show only this URL
Is this possible??
`