As soon as the page loads, the init
function is fired and the page is redirected:
<!DOCTYPE html><html><head><title>Example</title><script> function init() { window.location.href = "www.wherever.com"; }</script></head><body onload="init()"></body></html>