Ich habe ein Problem mit dem Löschen meines Caches, wenn Zurück-Taste gedrückt wird.Symfony2 response - Clear cache headers on Zurück-Schaltfläche
Status Code:200 OK (from cache)
Meine Antwort ist auf:
sagt Meine Header-Informationen i'ts aus dem Cache geladen
$response = new Response;
$response->expire();
$response->headers->addCacheControlDirective('must-revalidate', true);
$response->headers->addCacheControlDirective('allow_reload', true);
Was mache ich falsch? Keine der Dokumentationsmethoden scheint zu funktionieren ...
GREAT! Vielen Dank! Lief wie am Schnürchen! – rat4m3n
Dies ist ein Lebensretter. FWIW, es funktioniert super mit Silex sowie mit den HTTP-Komponenten von Symfony2. – neemzy