diff --git a/config/config.php b/application/config.php similarity index 100% rename from config/config.php rename to application/config.php diff --git a/config/database.php b/application/database.php similarity index 100% rename from config/database.php rename to application/database.php diff --git a/config/route.php b/application/route.php similarity index 100% rename from config/route.php rename to application/route.php diff --git a/config/tags.php b/application/tags.php similarity index 100% rename from config/tags.php rename to application/tags.php diff --git a/public/index.php b/public/index.php index 1eb0e75da..b5cda4cf8 100644 --- a/public/index.php +++ b/public/index.php @@ -3,8 +3,5 @@ // 定义应用目录 define('APP_PATH', dirname(__DIR__) . '/application/'); -// 定义配置目录 -define('CONF_PATH', dirname(__DIR__) . '/config/'); - // 加载框架引导文件 require dirname(__DIR__) . '/thinkphp/start.php';