Search notes:

Redirection with HTML

<!DOCTYPE html>
<html><head>
  <meta http-equiv="refresh"
        content="0;
        url=http://renenyffenegger.ch/notes/develeopment/web/HTML/redirection" />
</head></html>
The value of parameter content specifies the amount of secunds until the redirection takes place (0 = immediately).

See also

HTML element: meta
A 301 redirection can be made on an Apache Webserver with an .htaccess file.

Index