From d8005e369de10a4395c44693d94e875bf1746268 Mon Sep 17 00:00:00 2001 From: Mohammed Rhamnia Date: Mon, 10 Aug 2015 12:27:13 +0100 Subject: [PATCH] internal web server ran with dev environment by default --- book/page_creation.rst | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/book/page_creation.rst b/book/page_creation.rst index 37e62d94253..9fca6df4c40 100644 --- a/book/page_creation.rst +++ b/book/page_creation.rst @@ -60,7 +60,7 @@ a method inside of it that will be executed when someone goes to ``/lucky/number Before diving into this, test it out! - http://localhost:8000/app_dev.php/lucky/number + http://localhost:8000/lucky/number .. tip:: @@ -87,9 +87,15 @@ return a Symfony :ref:`Response ` object Symfony through a file - ``web/app_dev.php`` - that boots it in the ``dev`` environment. This enables great debugging tools and rebuilds cached files automatically. For production, you'll use clean URLs - like - ``http://localhost:8000/lucky/number`` - that execute a different file - - ``app.php`` - that's optimized for speed. To learn more about this and - environments, see :ref:`book-page-creation-prod-cache-clear`. + ``http://symfony.dev/lucky/number`` - that execute a different file - + ``app.php`` - that's optimized for speed. + + When you visit the ``http://localhost:8000`` URL in your browser, you're + executing your Symfony application in the ``dev`` environment. To visit + your application in the ``prod`` environment, visit the ``http://localhost:8000/app.php`` + URL instead. + + To learn more about this and environments, see :ref:`book-page-creation-prod-cache-clear`. Creating a JSON Response ~~~~~~~~~~~~~~~~~~~~~~~~