我正在使用Wamp服务器,我拉了项目,在index.php中有
require_once ('app_config_new.php')
我的文件结构如下:
我应该在apache配置文件中进行哪些更改以使用此代码
答案 0 :(得分:1)
它与Apache配置无关。
在文件index.php
中,您必须将路径设置为app_config_new.php
,如下所示:
require_once(__DIR__ . '/config/app_config_new.php');
答案 1 :(得分:0)
@DavidZadražil提供的答案是理想的答案,但是如果您不想更改代码,可以在php.ini
中更改include_path以包括目录与app_config_new.php
:
include_path=".;c:\your_path_to_project\config"
之后,重新启动Apache(如果使用mod_php)或PHP-FPM。