Redirect a visitor to other sites
3rd Dec 08 at 07:23 pm. Read 27 times. Trackback
To redirect the visitor to another page or URL, you can use either HTML an Meta tags, Javascript, PHP or htaccess redirection. The meta - redirection has to be in the >head< of the page, the PHP code has to be before any output with echo or print, therefore it should be at the top of the script.
HTML and Meta Tags:
Javascript:
document.location=”http://www.computerhilfen.de”;
PHP:
htaccess:
Redirect /seite2.html seite3.html