8000 Fix bad link · symfony/symfony-docs@1761050 · GitHub
[go: up one dir, main page]

Skip to content

Commit 1761050

Browse files
authored
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
1 parent 6be1560 commit 1761050

File tree

Collapse 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)
0