javascript replace current url code example
Example 1: window replace url
location.replace("url");
Example 2: java script change url without reload
window.history.replaceState({}, '','/dashboard');
location.replace("url");
window.history.replaceState({}, '','/dashboard');