我有一个名为 BookShopWeb 的动态 Web 项目,它是在 eclipse 中创建的,具有以下目录结构
/BookShopWeb/|
|--src
|---WebContent
|
|---META-INF
|----WEB-INF---web.xml
|
|--css--styles.css
|--jsp---index.jsp
在 web.xml 中,我将起始页设置为
<welcome-file-list>
<welcome-file>/WEB-INF/jsp/index.jsp</welcome-file>
在 index.jsp 中,我将 css 包括为
<head>
<link rel="stylesheet" type="text/css" href="../css/styles.css" />
</head>
但是加载时的索引页面不显示css信息。我用firebug检查了元素,它显示了一个错误报告
Apache Tomcat/6.0.29 - Error report..
The requested resource (/css/styles.css) is not available.
知道为什么会发生这种情况吗?我该如何纠正?谢谢标记