php redirect
Create a php file, then put folowing inside the php tag:
header("Location: newlocation.html"); /* Redirect browser */
/* Make sure that code below does not get executed when we redirect. */
exit;
[Skip to the main content] Welcome to Daigo’s Daily Digital Diorama. I blog about Baseball, Judo, Jazz, Linux, Design and on being a dad.
Create a php file, then put folowing inside the php tag:
header("Location: newlocation.html"); /* Redirect browser */
/* Make sure that code below does not get executed when we redirect. */
exit;