</body>
直前に以下のコード。
<script>
function DisableBackButton(){
window.history.forward()
}
DisableBackButton();
window.onload = DisableBackButton;
window.onpageshow = function(evt) { if (evt.persisted) DisableBackButton() }
</script>
下記を少し修正