Disable browser back button which has querystring with it.

JavaScript

var path = window.location.pathname;
         var page = path.split("/").pop();
         history.pushState(null, null, page + window.location.search);
    window.addEventListener('popstate', function(event) {
        history.pushState(null, null, page + window.location.search);