Skip to content

Kirby 4.1.2

(:all)

Matches all characters including slashes

Example

/site/config/config.php
return [
  'routes' => [
    [
      'pattern' => '/projects/(:all)',
      'action'  => function (string $path) {
        // react to requests
      }
    ]
  ]
];