Simple javascript and html meta tag to redirect.
Sample:
Published as personal reminder.
Sample:
<html>
<head>
<script type="text/javascript">
function Redirect() { location.href = "static/"; }
window.setTimeout("Redirect()", 1000);
</script>
<meta http-equiv="refresh" content="1; url=static/">
</head>
<body>
<div id="redirectlink" ><a href="static/">redirect page</a></div>
</body>
</html>
Published as personal reminder.
Comments
Post a Comment