您好!欢迎访问家园网-www.jy.wang!

家园网

在 inc/config.php 中定义根目录常量,然后所有地方都用绝对路径。

网络 作者:本站 点击:

在 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';


标签: