2018. 6. 11. 12:38

History.back() 차단

history.pushState(null, null, location.href);
window.onpopstate = function(event) {
    history.go(1);
};