tomcat下找不到网页的问题。

tomcat下找不到网页的问题。

工程的开发环境为Jdk1.5,tomcat5.0。把工程部署到tomcat下在网页上打入http://localhost:8080/SelectCource/出现index.jsp页。index.jsp页在WEB-INF/pages/下。index.jsp配置在Web.xml的
XML code
 
<welcome-file-list> <welcome-file>/WEB-INF/pages/index.jsp</welcome-file> </welcome-file-list>
 

其它的页面也在上面的目录下。而在其它的页面上引用其它的页面
XML code
 
<html:link page="/WEB-INF/pages/AdminLog.jsp">管理员登录</html:link>
 

为什么找不到呢出现的错误如下:
HTTP Status 404 - /SelectCource/WEB-INF/pages/AdminLog.jsp

--------------------------------------------------------------------------------

type Status report

message /SelectCource/WEB-INF/pages/AdminLog.jsp

description The requested resource (/SelectCource/WEB-INF/pages/AdminLog.jsp) is not available.

我把AdminLog.jsp页面配置到welcome-file上还能够找到。请指教。
WEB-INF的目录比较特殊,其下面的东西对工程而言,是不可见的.
你能不用"连接",用"包含"去试下~`就是include,或者import试试
为什么要把pages方在WEB-INF/呢 页面一般都放在工程目录下面就好了呀
二楼的你好:
  为什么欢迎页能找到。其它的jsp找不到呢?