How would I do this in PHP?
Server.Transfer(\"/index.aspx\")
(add \';\' for C#)
EDIT:
It is important to h
The easiest way is to use a header redirect.
header
header('Location: /index.php');
Edit: Or you could just include the file and exit if you don't want to use HTTP headers.