I have an Android webview with a page that redirects to another page, using location.replace(url). Lets say that I have page \"A\" that redirects to page \"
location.replace(url)
function locationReplace(url){ if(history.replaceState){ history.replaceState(null, document.title, url); history.go(0); }else{ location.replace(url); } }