Routing for "{{ request.pathinfo }}"
-
Route:
{% if request.route %}
{{ request.route }}
{% else %}
No matching route
{% endif %}
-
Route parameters:
{% if request.routeParams|length %}
{% include '@WebProfiler/Profiler/table.html.twig' with { 'data': request.routeParams, 'class': 'inline' } only %}
{% else %}
No parameters
{% endif %}
{% if router.redirect %}
-
Redirecting to: "{{ router.targetUrl }}" {% if router.targetRoute %}(route: "{{ router.targetRoute }}"){% endif %}
-
{% endif %}
-
Route matching logs
| Route name |
Pattern |
Log |
{% for trace in traces %}
| {{ trace.name }} |
{{ trace.path }} |
{{ trace.log }} |
{% endfor %}
Note: The above matching is based on the configuration for the current router which might differ from
the configuration used while routing this request.