我的根目录中有一个文件夹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 ?
答案 0 :(得分:0)
使用
<link href="../css/templatemo_style.css" rel="stylesheet" type="text/css" />
而不是:
<link href="css/templatemo_style.css" rel="stylesheet" type="text/css" />
..
用于进入目录树结构..