1// similar behavior as an HTTP redirect
2window.location.replace("http://stackoverflow.com");
3
4// similar behavior as clicking on a link
5window.location.href = "http://stackoverflow.com";
1window.location.href = '../'; //one level up
2// or
3window.location.href = '/path'; //relative to domain
1//To get just the relative path of a window location.
2
3const RELATIVE_PATH = window.location.pathname;