的Symfony 2顯示緩存頭,我想知道我怎麼能隱藏這些顯示緩存頭
例子
HTTP/1.0 200 OK Cache-Control: no-cache Content-Type: text/html Date: Fri, 18 Jan 2013 19:07:08 GMT HTTP/1.0 200 OK Cache-Control: no-cache Date: Fri, 18 Jan 2013 19:07:08 GMT X-Debug-Token: 50f99d5cba4da
我用這在我的代碼
return new Response($this->renderView('Shout/view/default.html.twig'));
都會調用通過
$httpKernel = $this->container->get('http_kernel');
$response = new Response;
$response->SetContent($httpKernel->forward('MyBundle:Module/'.$module.'/'.$module.':index'));
$response->headers->set('Content-Type', 'text/html');
return $response;
在樹枝中擴展
爲什麼要刪除他們?他們是你的朋友:? – KingCrunch
我不想刪除它們,我不想讓它們不能顯示在我的頁面上 –