我正在尝试为以assets
开头的所有内容创建路由,并将每个后续字符串捕获到{path}
变量中。代码如下:
$router->get('/assets/{path}', 'AssetController@show')
->where('path', '(.*)');
我发现流明不支持where
并触发此错误:
Call to undefined method Laravel\Lumen\Routing\Router::where()
有没有办法在流明上做到这一点?
答案 0 :(得分:0)
用以下代码找出它:
$router->get('/assets/{path:.+}', 'AssetController@show');