# (:all)

Matches all characters including slashes

****

****

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