Skip to content

Update routing.rst: fixing table #9448

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions routing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -506,12 +506,12 @@ redirect between them.
Symfony follows this logic to redirect between URLs with and without trailing
slashes (but only for ``GET`` and ``HEAD`` requests):

---------- ---------------------------------------- ------------------------------------------
========== ======================================== ==========================================
Route path If the requested URL is ``/foo`` If the requested URL is ``/foo/``
---------- ---------------------------------------- ------------------------------------------
========== ======================================== ==========================================
``/foo`` It matches (``200`` status response) It doesn't match (``404`` status response)
``/foo/`` It makes a ``301`` redirect to ``/foo/`` It matches (``200`` status response)
---------- ---------------------------------------- ------------------------------------------
========== ======================================== ==========================================

In summary, adding a trailing slash in the route path is the best way to ensure
that both URLs work. Read the :doc:`/routing/redirect_trailing_slash` article to
Expand Down