javascript location redirect

JavaScript
// similar behavior as an HTTP redirect
window.location.replace("http://stackoverflow.com");

// similar behavior as clicking on a link
window.location.href = "http://stackoverflow.com";window.location.href = "http://mywebsite.com/home.html";<button onclick="location.href='www.yoursite.com'">Click Me</button>window.location.href = "http://example.com/new_url";
Source

Also in JavaScript: