Routing
app_home
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_login | /login | Path does not match |
| 2 | app_logout | /logout | Path does not match |
| 3 | app_contact_index | /contact/ | Path does not match |
| 4 | update_contact | /contact/{id}/update | Path does not match |
| 5 | app_fetch_contacts | /contact/fetch | Path does not match |
| 6 | app_contact_add | /contact/add | Path does not match |
| 7 | calcule_contact_variables | /contact/calcule-variables | Path does not match |
| 8 | app_contact_show | /contact/{id} | Path does not match |
| 9 | app_contact_objets_content | /contact/{id}/objets | Path does not match |
| 10 | app_contact_documents_content | /contact/{id}/documents | Path does not match |
| 11 | app_contact_edit | /contact/{id}/edit | Path does not match |
| 12 | app_contact_deletecontact | /contact/delete-contact/{id} | Path does not match |
| 13 | app_contact_type_index | /contact-type/ | Path does not match |
| 14 | app_contact_type_add | /contact-type/add | Path does not match |
| 15 | app_fetch_contact_types | /contact-type/fetch-contact-types | Path does not match |
| 16 | app_contact_type_show | /contact-type/{id} | Path does not match |
| 17 | update_contact_type | /contact-type/{id}/update | Path does not match |
| 18 | app_contact_type_assign_group | /contact-type/assign-group/{id} | Path does not match |
| 19 | app_contact_type_unassign_group | /contact-type/unassign-group/{id} | Path does not match |
| 20 | app_contact_type_delete | /contact-type/{id}/delete | Path does not match |
| 21 | app_dashboard | /dashboard | Path does not match |
| 22 | app_home | / | Route matches! |
Note: These matching logs are based on the current router configuration, which might differ from the configuration used when profiling this request.