There are generally two automatic ways to redirect any page. I recommend using both these methods in the same document to ensure the user is re-directed.
Meta Redirect
The first example is using the page META function to redirect. This must be placed within the <head> section to work correctly.
<!– HTML meta refresh URL redirection –>
<meta http-equiv=”refresh”content=”0;
url=http://www.mydomain.com/new-page.html”>
Javascript Redirect
The second example is using JavaScript, also placed within the <head>.
<!– js refresh URL redirection –>
<script type=”text/javascript”>
window.location.href = “http://www.mydomain.com”
</script>