我将文件分割成不同的部分首先是config.inc.php,它位于根目录中,第二个是inc / header.inc.php。当我设计索引时一切运行良好,但现在我从位于about / index.php的第一页开始,除了config.inc.php之外一切都加载我一直在寻找一个解决方案小时没有运气。我只需要在about / index.php中调用配置,或者我在这里一起遗漏了什么。
我尝试了几个已经涉及SERVER和getcwd()的解决方案,但没有任何效果。
这是header.inc.php的样子
<?php
/*
* This requires the call of the config file for the website
*/
include './config.inc.php';
/*
* Any addition includes or script code goes below this line
*/
?>
<!DOCTYPE html>