我遇到包含或要求使用在Windows上运行的apache的问题。根文件夹中的index.php运行正常,但营销文件夹中的index.php文件可以找到该文件。
config/config.php
inc/header.php
index.php
/marketing/index.php
我有
<?php require_once '/config/config.php'; ?>
在header.php&amp;在/marketing/index.php我有
<?php require_once($_SERVER['DOCUMENT_ROOT'] . '/inc/header.php'); ?>
我之前没有遇到过这个问题,所以我真的为此而烦恼。