Whats the code to redirect someone to a different web page?
Printable View
Whats the code to redirect someone to a different web page?
HTTP header:
Location: http://www.google.com
or a relative URL. What language are you using?
html
Put this in the head:
Change the 5 to the seconds you want, and the url to, erm the URL you want :D I should mention that this doesn't work on every browser so make sure you provide a link too. You could also add a JavaScript to redirect the page too, to add extra security ;)Code:<meta http-equiv="refresh" content="5; url=Home.htm">
on method of acheiving this in javascript: -
Code:document.location.href='page2.html';
another method
<script>window.location=URL</script>