Redirect Web Page
Redirect HTML page
<html> <head> <meta HTTP-EQUIV="REFRESH" content="0; url=http://www.yourdomain.com/index.html"> </head> </html>
Redirect PHP page
<?php
header('location: http://url/f.html');
exit();
?>
or:
<?php
echo "<script>document.location.href='news.php'</script>";
?>