Routing
app_register
Matched route
Route Parameters
| Name | Value |
|---|---|
| _locale | "de" |
Route Matching Logs
Path to match:
/register
| # | Route name | Path | Log |
|---|---|---|---|
| 1 | admin_index.de | /admin/ | Path does not match |
| 2 | admin_index.en | /en/admin/ | Path does not match |
| 3 | app_home.de | / | Path does not match |
| 4 | app_home.en | /en/ | Path does not match |
| 5 | app_dashboard.de | /dashboard | Path does not match |
| 6 | app_dashboard.en | /en/dashboard | Path does not match |
| 7 | app_wine_show.de | /wine/{token} | Path does not match |
| 8 | app_wine_show.en | /en/wine/{token} | Path does not match |
| 9 | app_dashboard_profile_show.de | /dashboard/profile/ | Path does not match |
| 10 | app_dashboard_profile_show.en | /en/dashboard/profile/ | Path does not match |
| 11 | app_register.de | /register | Route matches! |
Note: These matching logs are based on the current router configuration, which might differ from the configuration used when profiling this request.