0
我是laravel &的初學者,試圖通過路由提供html內容。內容是關於API文件,所以我想通過路線服務。文檔包含在/ doc中具有以下目錄結構。如何路由到靜態文件夾並提供該文件夾內的html內容?
/laravel_project
.
.
doc/
.
.
index.html
我想爲以下航線上這個內容:
Route::get('/apiDoc', function() {
return File::get(public_path() . '/doc/index.html');
});
我試着像上面,但它無法正常工作。請幫助我同樣如何服務此內容
謝謝。
這不適用於我 – SaMeEr
問題是什麼? – Sovon