-5

运行本地服务器时,这一切都很好。

我有 header.html,其中包含以下代码:

<link rel="stylesheet" type="text/css" href="/header_style.css">

在 public_html 目录中,与 header.html 文件相同的目录,我有该header_style.css文件。

它设法找到所有图像,链接如下:

<img src="/images/logo.png"/>

所以我不知道为什么找不到我的 CSS 文件。

有任何想法吗?

4

2 回答 2

2
<link rel="stylesheet" type="text/css" href="header_style.css">

if it is in the same directory u dont need to use the /

于 2013-10-02T17:28:33.643 回答
2

Try removing the / at the beginning of the href in your link to header_style.css. It's not required and some servers may interpret this as 'return to root' which may or may not be the directory you expect it to be.

于 2013-10-02T17:28:46.177 回答