Reputation: 2191
I am using jsp and jquery.
After logging in, the home page is displayed, but when I click on the back button of browser, it show me log in page again.
When I click on the back button, I want it to redirect to the home page, like GMail does.
Upvotes: 0
Views: 3132
Reputation: 18006
It is a good practice to check whether a user is login or not in login page. If user is login then redirect him/her to your desired page, otherwise login him.
Upvotes: 0
Reputation: 3041
Simply check if someone is logged in at the login page, and if so redirect to the homepage. No magic necessary here.
Upvotes: 5