diff --git a/index.php b/index.php index 07c0a05ed..d0becfbaa 100644 --- a/index.php +++ b/index.php @@ -17,5 +17,8 @@ namespace think; // 加载基础文件 require __DIR__ . '/thinkphp/base.php'; +// 生成think文件检查,防止TP目录计算异常 +file_exists('think') || touch('think'); + // 执行应用并响应 Container::get('app', [__DIR__ . '/application/'])->run()->send();