I Want to redirect my url to http://localhost:8080/ClickBuy/product/details to http://localhost:8080/ClickBuy/home .
I have Define header.jsp and Include it
There are different ways to redirect but using Spring ModelView Object is simple
@RequestMapping(value = "/redirecturl", method = RequestMethod.POST) public ModelAndView methodPost() { return new ModelAndView( "redirect:/login.html"); }