Code: Select all
<html>
<head>
<script language="javascript" type="text/javascript">
    function redirect () {
        window.location.href = "http://yoururl.com/yourpage.html";
    }    
</script>
</head>
<body onload="redirect()">
</body>
</html>
Code: Select all
<html>
<head>
<script language="javascript" type="text/javascript">
    function redirect () {
        window.location.href = "http://yoururl.com/yourpage.html";
    }    
</script>
</head>
<body onload="redirect()">
</body>
</html>
Code: Select all
<?php
header("location : http://google.com");
?>