Sam Khalaf wrote a very nice article on the same subject, including a solution to automatically redirect if needed.
It can be found at
http://thinkoracleapex.blogspot.com/2018/10/apex-multi-tab-session-collision-issue.html.
"The key idea is that you want to somehow associate each active APEX session ID with its current window/tab and be able to validate that association upon rendering each page of your applications (you may need to make some exclusions, but let’s not worry about this for now). Then, whenever your APEX application is rendered in a browser/tab, you want to add some sort of validation (before rendering the page) that checks if the corresponding APEX session ID is already associated with some other window/tab (i.e. open in another window/tab).
If not, then the page will be rendered normally, after associating the current browser/tab with the current APEX session ID so other windows/tabs know that this APEX session ID is already used and associated with this window/tab. If APEX session ID is already associated with another window/tab, then it won’t complain about it nor will it throw an error informing users that they can’t open same APEX session in multiple windows/tabs. Instead, it will peacefully render that APEX page but seamlessly assign a new APEX session to it by programmatically utilizing APEX_CLONE_SESSION request."
This works like a charm; I have changed his code slightly, so it is smaller than 4000 characters - useful if you want to use it in a Dynamic Action.