0

我的根目录中有一个文件夹,candyfive它有html website一个正常工作的文件夹,并且一个域指向它,我在 candyfive 中有一个名为“portal”的子文件夹。它是网站的管理面板,拥有自己的 CSS 和图像。

问题是 candyfive 文件夹中的站点正在正确加载,但门户中的站点未加载任何图像或 css。

我的门户管理站点中的 css 链接是

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

我应该在此代码中添加什么以使其在子文件夹中工作?

这是网站结构:

candyfive/portal/index.php
candyfive/index.html       - is working fine
candyfive/portal/index.php - css and images not loading ? 
4

1 回答 1

0

利用

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

代替:

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

..用于在目录树结构中上..

于 2012-09-29T02:41:11.060 回答