这是我的目录:
Wamp>www>Newlinks
CSS (folder)
header.php
footer.php
Profiles (folder)
MainPHPfile.php
现在,我想将页眉和页脚文件包含在MainPHPfile.php中,但它不起作用。如何设置路径以使其有效?
与CSS相同的问题。我想使用CSS文件夹中的CSS文件作为页眉和页脚文件。请解决这个问题。我会感激你的。
答案 0 :(得分:1)
您可以使用..
这样的目录:
<?php
include '../header.php';
include '../footer.php';
与CSS相同。
答案 1 :(得分:0)
要上传文件夹,请使用my.namespace.Control = fabric.util.createClass(<Function>fabric.Object, {
id: '',
type: 'Control',
color: '#000000',
...
});
相对路径,如果需要沿文件夹下移,只需写入相对连续路径。 ../
答案 2 :(得分:0)
您可以使用../path/folder/to/file.ext
转到上一个路径。 /path/folder/to/file.ext
转到您网站的根目录,例如/public-html/
或/htdocs/
。