我正在使用 Laravel Lumen 微框架 v5.4.6
尝试加载页面http://lumen.dev/dax30
时一切正常,但是当我请求页面时(在 URL 末尾http://lumen.dev/dax30/
带有斜杠 ( )),我收到NotFoundHttpException错误。/
我的 routes.php 文件:
$_app = $this->app;
$_app->group(['prefix' => 'dax30'], function () use ($_app){
$_app->get('/', 'Landings\Dax30\Controllers\IndexController@index');
});
问题:如何在没有错误的情况下打开带有斜线和不带斜线的页面?