소스 검색

移动安装目录,支持根目录index.php访问,也可以像tp5一样只对外开放public一个目录

xurongyao 7 년 전
부모
커밋
4f7f8a438c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      extend/service/UploadService.php

+ 1 - 1
extend/service/UploadService.php

@@ -79,7 +79,7 @@ class UploadService
      */
     protected static function uploadDir($path, $root=null)
     {
-        if($root === null) $root = 'public' . DS . 'uploads';
+        if($root === null) $root = PUBILC_PATH . DS . 'uploads';
         return $root . DS . $path;
     }