Redirect to a webpage
Here below you should get an explanantion on how to redirect to a web page using.htaccess or JavaScript
htaccess
The .htaccess is to be placed in the directory that should be redirected.
RedirectPermanent address on path
Example:
RedirectPermanent/software/ http://sofware.mysite.com/
More info:
http://httpd.apache.org/docs/1.3/mod/mod_alias.html # redirectperm
Using php header
note: place before any code
<?php
header('Location:absolute or relative path');?>
Using a meta tag
Put between the head tags of your file:
<meta http-equiv="refresh" content="10;url=http://www.kioskea.net/" />
Using JavaScript
Put in the head tags of your page:
function redirect(page)
(window.location = page;)
setTimeout ( 'redirect ( "http://www.kioskea.net/")', 5000);
/ / 5000 milliseconds = 5 seconds, the time after wich redirection is made