Hello,
I have used the below Javascript
window.history.pushState(null, "", window.location.href);
window.onpopstate = function(event) {
window.history.pushState(null, "", window.location.href);
var tl = document.title;
document.title="";
document.title= tl;
};
Please try if it can help you as well.
Thanks