From 1761050bd3b49679b0eac6259c9f08aa9be2d644 Mon Sep 17 00:00:00 2001 From: Thibaut Leneveu Date: Fri, 17 Aug 2018 21:09:12 +0200 Subject: [PATCH] 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 --- create_framework/front_controller.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/create_framework/front_controller.rst b/create_framework/front_controller.rst index 8698865aa46..f11e8fde69b 100644 --- a/create_framework/front_controller.rst +++ b/create_framework/front_controller.rst @@ -153,7 +153,7 @@ web root directory: Now, configure your web server root directory to point to ``web/`` and all other files won't be accessible from the client anymore. -To test your changes in a browser (``http://localhost:4321/hello/?name=Fabien``), run +To test your changes in a browser (``http://localhost:4321/hello?name=Fabien``), run the PHP built-in server: .. code-block:: terminal