在我的服务器中,我的根目录是:home
所有公共文件(www 目录)都在:home/public_html
好的,我想将一些文件放在 www 目录之外的其他目录中,例如:home/configs 或 home/php_classes
我想从 www 目录中的某些文件中包含这些目录中的文件。
基本上,我想在 home/public_html/index.php 中包含 home/configs 和 home/php_classes 中的文件
我试过了:
include("../configs/site_config.php");
include("../php_classes/mailer.php");
和
include("/home/configs/site_config.php");
include("/home/php_classes/mailer.php");
但它不起作用,我不断收到包含警告“没有这样的文件或目录”