主要是定义在 AppProvidersRouteServiceProvider
:
protected function mapApiRoutes()
{
Route::group([
'middleware' => 'api',
'namespace' => $this->namespace,
'prefix' => 'api',
], function ($router) {
require base_path('routes/api.php');
});
}
给 api.php
的路由都上了 /api
前缀。
而 middleware 是定义在 AppHttpKernel
中的 $middlewareGroups
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…