我有一个名为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信息,我用萤火虫检查了该元素并显示了错误报告
Apache Tomcat/6.0.29 - Error report..
The requested resource (/css/styles.css) is not available.
知道为什么会这样吗?如何纠正呢?
largeQ
白衣非少年
相关分类