> For the complete documentation index, see [llms.txt](https://prtechs-organization.gitbook.io/e2encrypt-frame-php/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://prtechs-organization.gitbook.io/e2encrypt-frame-php/routes/creating-new-routes.md).

# Creating New Routes

```php
// src/Routes.php
...
public $routes = [
    '/new_route_name' => array(
        'controller' => "YourControllerName",
        'route' => "index"
    ),
];
...
```
