web.xml裏的welcome-file-list裏設置默認訪問頁面爲/html/index.html
可是在訪問時,頁面CSS都沒加載。
正常輸入網址卻沒問題。用/html/index.jsp也沒問題。配置以下
<welcome-file-list>
<welcome-file>/html/index.html</welcome-file>
</welcome-file-list>
CSS文件在與html文件夾同級的app目錄裏。html文件裏的CSS路徑爲:app/main.css。
由於直接輸入index.html打開是不會有問題的。
http://localhost:8080/項目 打開就會丟失CSS
http://localhost:8080/項目/html/index.html 就不會丟失
css
解決方法:html
CSS路徑不要用相對路徑,寫成絕對路徑web