Linked "How to make sub-requests" in usage doc

Fixes #546.
parent 7e5e1f88
...@@ -531,6 +531,11 @@ round-trip to the browser (as for a redirect), use an internal sub-request:: ...@@ -531,6 +531,11 @@ round-trip to the browser (as for a redirect), use an internal sub-request::
$request = Request::create($app['url_generator']->generate('hello'), 'GET'); $request = Request::create($app['url_generator']->generate('hello'), 'GET');
There's some more things that you need to keep in mind though. In most cases you
will want to forward some parts of the current master request to the sub-request.
That includes: Cookies, server information, session.
Read more on :doc:`how to make sub-requests <cookbook/sub_requests>`.
JSON JSON
---- ----
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment