http://wtbis.cn/doc/webman/static.html 根據(jù)文檔中的說(shuō)法是,public是默認(rèn)靜態(tài)目錄 能不能增加除開(kāi)public其他目錄也為靜態(tài)目錄,同時(shí)兼容public也是靜態(tài)目錄呢?
意思是請(qǐng)求文件時(shí)先從默認(rèn)public目錄找,找不到再?gòu)钠渌付ǖ膒ublic目錄找? webman本身不支持這種用法,不過(guò)你可以設(shè)置一個(gè)404處理 config/route.php 里設(shè)置
Route::fallback(function($request){ $path = $request->path(); return response()->file(other_public($path)); });
other_public函數(shù)需要你自己定義。