This will not work for non javascript enabled browsers:
HTML Code:
<body onload="window.location.replace('some.htm')">
which could be a good thing, depending upon what your objectives are.
Also, if the page this is on takes a long time to load, it will not go to the new page for awhile. If you want close to instant redirection use:
Code:
<script type="text/javascript">
window.location.replace('some.htm')
</script>
in the head, right after the opening <head> tag. Once again, only javascript enabled browsers will 'get it'.
Bookmarks