May 23
For those who want to redirect their user to a certain page, here are a couple examples to do so.
PHP redirect:
header('Location: index.html');
HTML Redirect:
<meta http-equiv='refresh' content='0;URL=http://www.trinix.be'>
Javascript Redirect:
document.location.href='index.html'
Recent Comments