Directory Issues
Hi,
My webapp has the following directory;
|TestApp
|- webcontent
|- - secure
|- - - admin - admin.jsp
|- - - user - user.jsp
|- - WEB-INF
|- - - jsp
|- - - - admin - admin.jsp
|- - - - user - user.jsp
|- index.jsp
I have an index page with two links. One of the links points to admin.jsp in the secure directory and the other points to admin in the WEB-INF directory. They are as follows;
<a href="secure/admin/admin.jsp">Secure
<a href="WEB-INF/jsp/admin/admin.jsp">WEB-INF
The first link seems to work fine. However the second link doesn't work at all. I have no idea why this could be. Can anyone give me a hint?
Message was edited by:
DontKnowJack

