# Static routes usage You just need to configure an option to your route, so the bundle knows you want to expose it. The supported sitemap parameters are: * `"section"`: string that represent the section identifier in which to store the URL (default: `"default"`) * `"lastmod"`: a valid datetime as string (default: `"now"`) * `"changefreq"`: change frequency of your resource, one of `"always"`, `"hourly"`, `"daily"`, `"weekly"`, `"monthly"`, `"yearly"`, `"never"` (default: `"daily"`) * `"priority"`: a number between `0` and `1` (default: `1`) > **Note** you can change defaults in the bundle configuration. > Jump to [dedicated documentation](2-configuration.md) for more information. ## Annotation ```php App\Controller\DefaultController::index App\Controller\DefaultController::faq App\Controller\DefaultController::about App\Controller\DefaultController::contact ``` --- « [Configuration](2-configuration.md) • [Dynamic routes usage](4-dynamic-routes-usage.md) »