I have scenario where the user clicks "log off" and is redirected to the home page. However when he redirects to the homepage if he clicks the back button of the browser he can return to the working area. I need to prevent him from coming back to the working area after he logs off. Can anyone help ?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
There's nothing you can do to prevent a user from revisiting a previously visited URL, even after they have logged out. Your session-management code needs to manage this situation. If the user no longer holds a valid session, the request should not execute. If you're trying to prevent the browser from displaying a cached version of a post-login page after a user has logged out, you can set an HTTP Cache-Control header with a value of no-cache on pages accessible after login. |
|||
|
|
try this code,
|
|||
|
|
|
Make a session variable as 0 upon logout and check for its value in a script tag on the top of the page. If it is 0 stay on the login page. This will prevent back button from entering inside the login page. |
|||
|
|
