在 inc/config.php 中定义根目录常量,然后所有地方都用绝对路径。
1、inc/config.php,添加:
// 网站根目录绝对路径(自动检测)
define('ROOT_PATH', dirname(__DIR__) . DIRECTORY_SEPARATOR);2. 然后在 product_list.php 中使用:
require_once ROOT_PATH . 'inc/db.php'; require_once ROOT_PATH . 'inc/functions.php';