Basic Redirections

mh348

Expert Member
Joined
Jun 2, 2006
Messages
4,229
Reaction score
41
Location
NW, SA
Does any have a basic redirection script in html (???) or php for me to use.
 
HTML redirection - add this between the <HEAD> and </HEAD> tag of the page:
<meta http-equiv="refresh" content="0; url=http://www.yournewaddress.com">

PHP redirection - add to top of page:
<?
$URL="http://www.yournewaddress.com";
header ("Location: $URL");
?>

Javascript redirection:
<HEAD>
<SCRIPT language="JavaScript">
<!--
window.location="http://www.yournewaddress.com";
//-->
</SCRIPT>
</HEAD>
 
Last edited:
Thanks, It was just what I was looking for and it works great !
 
Top
Sign up to the MyBroadband newsletter
X