redirect page code example
Example 1: html redirect
<!DOCTYPE html>
<html>
<head>
<title>HTML Meta Tag</title>
<meta http-equiv = "refresh" content = "2; url = https://www.tutorialspoint.com" />
</head>
<body>
<p>Hello HTML5!</p>
</body>
</html>
Example 2: How do I redirect to another webpage
window.location.replace("http://stackoverflow.com");
window.location.href = "http://stackoverflow.com";
window.location = "https://stackoverflow.com";
Example 3: Which of the following is the correct way to redirect a user to a new page?
window.location = "http://new-website.com";
window.location.href = "http://new-website.com";
window.location.assign("http://new-website.com");
window.location.replace("http://new-website.com");