HTML - redirect page on load

.

To redirect page on load to some other URL use meta directive 'Refresh' and content. First parameter defines delay in seconds before redirection (0 for instant redirection).

 

<html><head>

<meta http-equiv="Refresh" content="0;url="http://someotherurl">

</head><body>

Redirecting...

</body></html>

Print