springboot启动中ccs样式和图片找不到, 报net::ERR_ABORTED 404

Amy清风 / 2023-07-29 / 原文

1、 net::ERR_ABORTED 404

 

 

项目结构

 

3、css

错误的:
<link href="/static/iconfont/style.css" type="text/css" rel="stylesheet">

正确的:
<link href="iconfont/style.css" type="text/css" rel="stylesheet">

 

4、图片

错误的:
<body style="background:url(/static/images/bg.jpg) no-repeat;">

 

 正确的:

<body style="background:url(../images/bg.jpg) no-repeat;">