Basically, there is this open question about how to prevent a user from accessing their home page, after having hit the back arrow using node js/express-sessions...
The best way to prevent this was discussed in this post:
https://stackoverflow.com/a/6505456/6341935
I found that this solution works effectively on laptop/computer (not mobile) browsers:
res.header('Cache-Control', 'no-cache, private, no-store, must-revalidate, max-stale=0, post-check=0, pre-check=0');
I was wondering if anyone else had a backend solution to this problem that also works on mobile.
Thanks guys... Otherwise I would resort to a hacky ejs/javascript solution that isn't nearly as simple/effective.