test.html
<html>
<head>
...
<script>
window.onpageshow = function (e) {
if ((e.persisted || window.performance) && window.performance.navigation.type == 2) {
window.location.reload();
}
};
</script>
</head>
<body>
...
</body>
</html>