/ 網站根路徑 css
./ 當前路徑html
../ 上一級路徑bootstrap
例如以上 本地靜態網站 index頁面地址 127.0.0.1/bootstrap_test/index.html網站
須要引入 css 文件夾的 bootstrap.css文件 htm
一、test
<link href="css/bootstrap.min.css" rel="stylesheet"> 實際請求地址爲:127.0.0.1/bootstrap_test/css/bootstrap.min.css 請求
二、im
<link href="./css/bootstrap.min.css" rel="stylesheet"> 實際請求地址爲:127.0.0.1/bootstrap_test/css/bootstrap.min.css img
三、文件
<link href="/css/bootstrap.min.css" rel="stylesheet"> 實際請求地址爲:127.0.0.1/css/bootstrap.min.css
四、
<link href="../bootstrap_test/css/bootstrap.min.css" rel="stylesheet"> 實際請求地址爲:127.0.0.1/bootstrap_test/css/bootstrap.min.css