diff --git a/routing.rst b/routing.rst index 47fcfe8cb8f..a41b9bba6a6 100644 --- a/routing.rst +++ b/routing.rst @@ -2805,6 +2805,12 @@ service, which you can inject in your services or controllers:: ``Symfony\Component\HttpKernel\UriSigner`` to ``Symfony\Component\HttpFoundation\UriSigner``. +.. note:: + + The generated URI hashes may include the ``/`` and ``+`` characters, which + can cause issues with certain clients. If you encounter this problem, replace + them using the following: ``strtr($hash, ['/' => '_', '+' => '-'])``. + Troubleshooting ---------------