diff --git a/.gitignore b/.gitignore index 45773e0d2..a1c954148 100644 --- a/.gitignore +++ b/.gitignore @@ -1,9 +1,9 @@ !.gitignore /.idea /.svn -/runtime/ +/runtime /composer.lock /public/upload /nbproject -/static/runtime/ -/static/upload/ \ No newline at end of file +/runtime +/static/upload \ No newline at end of file diff --git a/index.php b/index.php index b808f6d38..2636da582 100644 --- a/index.php +++ b/index.php @@ -19,7 +19,7 @@ session_name('s' . substr(md5(__FILE__), 0, 8)); define('APP_PATH', __DIR__ . '/application/'); /* 定义Runtime运行目录 */ -define('RUNTIME_PATH', __DIR__ . '/static/runtime/'); +define('RUNTIME_PATH', __DIR__ . '/runtime/'); /* 加载框架引导文件 */ require __DIR__ . '/thinkphp/start.php';