I am trying to use redirect tag for directing index page to the home page residing in my web project's JSP folder. The hierarchy of my project is as under:
WEB-INF jsp home.jsp index.jsp
I am using both the libraries jstl 1.2 and standard.jar Following is the code of my index.jsp
<%@ taglib prefix="core" uri="/tags/c" %>
<core:redirect url="/home"></core:redirect>
When i run the project i recieve the following error;
HTTP Status 404 - /JSTL/home type Status report message /JSTL/home description The requested resource (/JSTL/home) is not available.