在 html 中,开头的反斜杠 (/) 告诉系统从主目录开始查找。例如,
<a href="/folder1/example.css">Link</a>
<img scr="/images/example.jpg">Image />
重复一遍,/ 告诉系统从主目录查找。
有没有办法在 PHP 中做同样的事情?
<?php include '/header.php'; ?>
下面的php代码只会查找header.php当前目录下一个目录。如果我的问题不够清楚,请发表评论。谢谢。