redirect website code example
Example 1: 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 2: redirect url
LOGIN_REDIRECT_URL = 'your_url'
Example 3: Which of the following is the correct way to redirect a user to a new page?
window.location = "http://new-website.com";
Example 4: 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");