Skip to content

Instantly share code, notes, and snippets.

@marcop135
Created June 6, 2022 07:58
Embed
What would you like to do?
Redirection via meta and javascript
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv = "refresh" content = "1; url = https://example.com" />
</head>
<body>
<script>
window.location.href = 'https://example.com';
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment