routes Additional route setup for Kirby's internal router Read the guide The routes option accepts an array of routes. return [ 'routes' => [ [ 'pattern' => 'team/(:any)', 'action' => function ($hash) { return go('team/#' . $hash); } ], ] ];