POST

ブラウザバック(戻る)の無効化

</body> 直前に以下のコード。

<script>
function DisableBackButton(){
  window.history.forward()
}
DisableBackButton();
window.onload = DisableBackButton;
window.onpageshow = function(evt) { if (evt.persisted) DisableBackButton() }
</script>

下記を少し修正

https://qiita.com/szaizen/items/91e652392825b90ef14a

-POST