See the [routing's concept](../concepts/concepts.md#routing) for details.
## How to create a route?
You have to edit the `routes.json` file in one of your APIs folders (`./api/**/config/routes.json`) and manually add a new route object into the `routes` array.
-`handler` (string): Action to executed when the route is hit following this syntax `<Controller>.<action>`
-`config`
-`policies` (array): Array of policies names or path ([see more](../guides/policies.md))
-`prefix` (string): Set a prefix to this route. Also, it will be loaded into the main router (useful feature for plugin)
## Dynamic parameters
The router used by Strapi allows you to create dynamic routes where you can use parameters and simple regular expressions. These parameters will be exposed in the `ctx.params` object. For more details, please refer to the [PathToRegex](https://github.com/pillarjs/path-to-regexp) documentation.
By default, the main route of the server `/` is pointed to the `/public/index.html` file. To override this behavior, you need to create a route with an empty path `/` in one of your API folder (`/api/**/config/routes.json`).