Redirect a Web Page

There are a few ways...

You can do either a Meta Redirect:
Put this in the head section of your page:
Code:
<meta http-equiv="refresh"content="0; url=http://example.com/yournewpage.html"/>

Or with javascrpt:
Code:
<script language="javascript">  
window.location = "http://example.com/yournewpage.html";
</script>

Or a 301 redirect with a .htaccess file:
Code:
Redirect 301 /youroldfile.html http://example.com/yournewpage.html

The choice is yours!
 
Back
Top