How I can modify last URL of browser history ?
Example:
- If currently user is on a specific page or URL, say:
/page3
- Because of some functionality (error handled), the user goes to
/page1
. - In the context of page
/page1
, if user clicks on browser's back button, I want to redirect the user to/page2
instead of/page3
.
How can I achieve this using JavaScript, jQuery or AngularJS?