How to forward to another website
This is a simple php script you can use to forward one website to another.
<html>
<head>
<script language="JavaScript">
function redir() {
window.location="http://phpmonster.com";;
}
</script>
</head>
<body onload="setTimeout('redir()',0)"></body>
</html>
window.location=\'http://phpmonster.com'; - the new website address you want to forward to.
setTimeout('redir()',0) - You can set a delay, after how many seconds you want to forward to the other website