diff --git a/src/content/docs/cache/how-to/cache-rules/examples/cache-everything.mdx b/src/content/docs/cache/how-to/cache-rules/examples/cache-everything.mdx index 2e4b2ffe9382c8..8b036b65a5e85e 100644 --- a/src/content/docs/cache/how-to/cache-rules/examples/cache-everything.mdx +++ b/src/content/docs/cache/how-to/cache-rules/examples/cache-everything.mdx @@ -28,5 +28,8 @@ import { Example, Render } from "~/components" :::caution -This option caches all HTML regardless of the presence of dynamic content. If you use this approach to cache pages containing dynamic content, visitors may receive information not intended for them. To avoid caching dynamic content, you can add a condition to check for the presence of a cookie. For more information, refer to [Bypass Cache on Cookie](/cache/how-to/cache-rules/examples/bypass-cache-on-cookie/). +This option caches all HTML regardless of the presence of dynamic content. If you use this approach to cache pages containing dynamic content, visitors may receive information not intended for them. To avoid caching dynamic content, you can add a condition to the rule's matching criteria to prevent it from matching that content. Some examples include: +- Checking for the presence of a cookie. +- Negative matching against known dynamic content file paths. +- Negative matching against dynamic content extensions (or lack of an extension). :::