We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1eb34a commit 71126b1Copy full SHA for 71126b1
book/http_fundamentals.rst
@@ -357,9 +357,9 @@ Almost all modern web apps do this - including apps like WordPress.
357
Stay Organized
358
~~~~~~~~~~~~~~
359
360
-But inside your front controller, how do you know which page should
361
-be rendered and how can you render each in a sane way? One way or another, you'll need to
362
-check the incoming URI and execute different parts of your code depending
+Inside your front controller, you have to figure out which code should be
+executed and what the content of to return should be. To figure this out, you'll
+need to check the incoming URI and execute different parts of your code depending
363
on that value. This can get ugly quickly::
364
365
// index.php
0 commit comments