處理靜態檔案
webman支援靜態檔案存取,靜態檔案都放置在public
目錄下,例如訪問 http://127.0.0.8787/upload/avatar.png
實際上是訪問{主項目目錄}/public/upload/avatar.png
。
注意
webman 從1.4開始支援應用插件,以/app/xx/檔案名
開頭的靜態檔案訪問實際上是訪問應用插件的public
目錄,也就是說 webman >=1.4.0 時不支援{主項目目錄}/public/app/
下的目錄訪問。
更多請參考應用插件
關閉靜態檔案支援
如果不需要靜態檔案支援,打開config/static.php
將enable
選項改成false。關閉後所有靜態檔案的訪問會返回404。
更改靜態檔案目錄
webman默認使用public目錄為靜態檔案目錄。如需修改請更改support/helpers.php
的中的public_path()
助手函數。
靜態檔案中介層
webman自帶一個靜態檔案中介層,位置app/middleware/StaticFile.php
。
有時我們需要對靜態檔案做一些處理,例如給靜態檔案增加跨域http頭,禁止訪問以點(.
)開頭的檔案可以使用這個中介層
app/middleware/StaticFile.php
內容類似如下:
<?php
namespace support\middleware;
use Webman\MiddlewareInterface;
use Webman\Http\Response;
use Webman\Http\Request;
class StaticFile implements MiddlewareInterface
{
public function process(Request $request, callable $next) : Response
{
// 禁止訪問.開頭的隱藏檔案
if (strpos($request->path(), '/.') !== false) {
return response('<h1>403 forbidden</h1>', 403);
}
/** @var Response $response */
$response = $next($request);
// 增加跨域http頭
/*$response->withHeaders([
'Access-Control-Allow-Origin' => '*',
'Access-Control-Allow-Credentials' => 'true',
]);*/
return $response;
}
}
如果需要此中介層時,需要到config/static.php
中middleware
選項中開啟。