You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(function/* staticache */ () {
// check if request method is not GET or HEADif (in_array($_SERVER['REQUEST_METHOD'], ['GET', 'HEAD']) === false) {
return;
}
// …
The text was updated successfully, but these errors were encountered:
If the request method is POST, PUT, or similar, no cached pages should be returned.
The following could be added to the
index.php
(compare to $page->isCacheable())The text was updated successfully, but these errors were encountered: