Skip to content

Instantly share code, notes, and snippets.

@Korveld
Created April 14, 2023 09:13
Show Gist options
  • Save Korveld/b2096937b6b7eecad3ccbd95171c2674 to your computer and use it in GitHub Desktop.
Save Korveld/b2096937b6b7eecad3ccbd95171c2674 to your computer and use it in GitHub Desktop.
Html redirection
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="refresh" content="0; url='URL_TO_REDIRECT'" />
<script type="text/javascript">
window.location.href = "URL_TO_REDIRECT"
</script>
</head>
<body>
<p>You will be redirected to URL_TO_REDIRECT soon!</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment