Skip to content

Commit 7d68f62

Browse files
committed
bug #10199 Fix bad link (tleneveu)
This PR was merged into the 2.8 branch. Discussion ---------- Fix bad link The link http://localhost:4321/hello/?name=Fabien is not valid because it does not match the route /hello but the route /hello/ and therefore returns a 404 error. It must be written this way: http://localhost:4321/hello?name=Fabien <!-- If your pull request fixes a BUG, use the oldest maintained branch that contains the bug (see https://symfony.com/roadmap for the list of maintained branches). If your pull request documents a NEW FEATURE, use the same Symfony branch where the feature was introduced (and `master` for features of unreleased versions). --> Commits ------- 1761050 Fix bad link
2 parents 41ec44e + 1761050 commit 7d68f62

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

create_framework/front_controller.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ web root directory:
153153
Now, configure your web server root directory to point to ``web/`` and all
154154
other files won't be accessible from the client anymore.
155155

156-
To test your changes in a browser (``http://localhost:4321/hello/?name=Fabien``), run
156+
To test your changes in a browser (``http://localhost:4321/hello?name=Fabien``), run
157157
the PHP built-in server:
158158

159159
.. code-block:: terminal

0 commit comments

Comments
 (0)