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

This commit is contained in:
xurongyao 2018-09-16 16:45:58 +08:00
parent 6818bbc537
commit 4f7f8a438c

View File

@ -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;
}