Redirect to another url on opening a html.
Redirect to another url on opening a html.
Add this to your head in html file for jumping at once.
1
2
3
4
<!-- jump at once -->
<head>
<meta http-equiv="REFRESH" content="0;URL=http://url.to.jump/">
</head>
Add this to your head in html file for jumping after 10 s.
1
2
3
4
<!-- jump after 10 seconds -->
<head>
<meta http-equiv="REFRESH" content="10;URL=http://url.to.jump/">
</head>