Routing
app_index
Matched route
Route Parameters
No parameters.
Route Redirection
This page redirects to:
/login
Route Matching Logs
Path to match:
/
| # | Route name | Path | Log |
|---|---|---|---|
| 1 | app_admin | /admin/ | Path does not match |
| 2 | add_permission | /admin/permission/add | Path does not match |
| 3 | app_permission_delete | /admin/permission/{id}/delete | Path does not match |
| 4 | app_permission_edit | /admin/permission/{id}/edit | Path does not match |
| 5 | app_user_delete | /admin/{id} | Path does not match |
| 6 | user_new | /admin/new | Path does not match |
| 7 | app_user_edit | /admin/{id}/edit | Path does not match |
| 8 | app_user_email | /admin/email | Path does not match |
| 9 | app_user_username | /admin/username | Path does not match |
| 10 | app_index | / | Route matches! |
Note: These matching logs are based on the current router configuration, which might differ from the configuration used when profiling this request.