Leverage Browser Cache with Cache Headers

When using WP Engine as your Digital Experience platform, we handle many server-level optimizations for you automatically. One of these optimizations is handling the caching instructions sent in headers on your site. In this article we will explain how these headers work, and how to tell if your page or file is hitting cache.


About Cache Headers

“Cache” refers to a saved snapshot of a page or file so it can be served more quickly. A page served from cache can be returned in a few milliseconds, compared to a second or more for page that has to be created as new. This means it’s definitely in your best interest to serve as much content from cache as possible. (Learn more about caching here.)

“Headers” refers to information that your web browser sends or requests. Some headers are sent with a page or file request, while others are associated with the response you receive back.

When a page or file is requested, the server and your browser both listen to the “Cache-Control” headers for instructions on who can access the cached copy, and how long the copy can be accessed. Cache-Control headers are important to your site’s scalability, so WP Engine already manages these headers for you.

To effectively leverage browser cache, these cache-control headers are used to tell the browser how long to store saved content.

By default, page cache is set to 600 seconds, or 10 minutes. Static assets (such as images) are set to 365 days.


Verify Cache Headers

There are multiple ways to see the Cache-Control headers set by your website, but the easiest way is within your web browser.

  1. Right+Click or CTRL+Click on your web page
  2. Click Inspect
  3. Select the Network tab
  4. Refresh the page
  5. You should see something like this:
  1. Click your page URL in the list – usually the first item
  2. This will bring up a list of Response headers sent
    • If you do not see the headers straight away, be sure the Headers tab is selected
  1. You will see two important headers:
    • cache-control – Tells the cache system (browser or server-level page cache) how long to cache the page in seconds.
      • When max-age is set to 600, the page can be cached for 10 minutes.

    • x-cache – Tells you whether the page was served from cache or not.
      • A HIT indicates the request was served from the caching layer. The number tells you how many times this version of a page has been served from cache.
      • A MISS indicates the page was not served from cache. The x-pass-why header will tell you the reason why the request did not hit cache. In the example below, the reason this page was not cached is because it’s a WordPress Admin page, which cannot be cached as a WP Engine default.

Change Cache Headers

Making cache-related changes will typically affect site performance. The more cacheable a site is, the more it will gracefully scale with higher traffic volumes. Caching can also negatively impact site performance as well, so it is advise to alter cache length on items you are sure can be served from cache without issue.

There may be times when you want to cache a page for longer than the standard 10 minutes. In these cases, you can use a configuration plugin to set Cache-Control headers to your liking. Cache headers can be increased, but not decreased below 600 seconds (10 minutes).

Increase Cache Headers

Increasing the amount of time pages are stored in cache will help with site speed and the overall user experience on your site. Increasing cache headers varies by the type of asset. While there are other plugins and methods available, those will likely require placing header changes in your .htaccess file. WP Engine has deprecated the .htaccess file, so this is not a sustainable method and will not ensure your success. The options we recommend are listed below.

If you would like to increase the cache expiration on a website to improve performance and scalability, it is advised to use a method of altering cache headers that does so directly in PHP code, such as in the WP Engine mu-plugin. Alternatively, cache headers can be set on the Web Rules page of the User Portal, or by having a rule placed directly on Nginx by Support.

Static Assets

Static assets are served by Nginx. Their cache expiration can only be changed by reaching out to WP Engine Support and having a rule placed on Nginx directly.

Post and Page Expiry

Cache expiry for WordPress post and pages can be increased by way of the WP Engine mu-plugin available in the WordPress admin dashboard of the website. To take effect, a change must be made from the default setting and then saved.

  1. Log in to the wp-admin dashboard of the website
  2. Click on WP Engine in the main menu
  3. Select Caching
  4. Alter the Post cache length and/or Page cache length
  1. (Optional) Enable Smarter Cache and Last-modified Headers to increase cache even more for post that are not edited often
  2. Save all changes

NOTE FOR MULTISITE

Adjusting headers on the Network Super Admin will not impact subsites. Multisites can only have headers on a sub-sites by sub-site basis using this method. We recommend using Web Rules for any other potential workarounds.

REST API Namespaces

Cache length for REST API end-points can be increased through the WP Engine mu-plugin in your WordPress admin dashboard. To take effect, a change must be made from the default setting and then saved.

  1. Log in to the wp-admin dashboard of the website
  2. Select WP Engine from the main menu
  3. Click Caching
  4. Alter the desired end-point(s)
  5. Save all changes

Cache-control Headers

Cache-control headers can be set for Nginx by way of the User Portal, on the Web Rules page.

Learn more about adding headers in the Web Rules guide here.

In the event that there is a conflicting rule between the WP Engine mu-plugin settings and the Web Rules settings within the User Portal, the Web Rules settings will be the rule applied.

Reduce Cache Headers

Cache-control headers set lower than 600 (10 minutes) will not be effective, as this is the length of time set on WP Engine’s caching server directly.

Anything lower than 600 requires a full page cache exclusion, which can be added by WP Engine Support. We advise using cache exclusions very sparingly, as uncached pages can negatively impact performance at scale. We will not honor requests to uncache an entire website, a site homepage or add cache exclusions that otherwise uncache a large portion of your website.


NEXT STEP: Learn what object caching is and how to enable it

Geographically customize content

Customize page content for your users based on their location without compromising cache or performance using WP Engine's GeoTarget.