Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/content/docs/rules/reference/page-rules-migration.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ To make the transition seamless, Cloudflare will handle the migration of your ex
If you wish to explore the benefits of modern Rules features sooner, you can begin adopting them today. Doing so allows you to:

- Take advantage of modern features and capabilities sooner.
- Customise and refine your rules to match your evolving needs.
- Customize and refine your rules to match your evolving needs.

To assist with this process, we provide you with a comprehensive mapping between Page Rules settings and modern Rules products in this guide.

Expand Down Expand Up @@ -54,11 +54,12 @@ The following example demonstrates the use of the [`http.request.full_uri`](/rul
<Example>
A **Page Rules URL** like:

`example.com/*/downloads/*.txt`
`example.com/*/downloads/*.txt`

becomes a **filter expression** such as:

`http.request.full_uri wildcard "http*://example.com/*/downloads/*.txt*"`

</Example>

[Single Redirects](/rules/url-forwarding/single-redirects/create-dashboard/) and [Rewrite URL](/rules/transform/url-rewrite/create-dashboard/) rules also offer a simplified view called **Wildcard pattern**, allowing you to specify URL patterns (`http*://example.com/*/downloads/*.txt*`) without specifying the full filter expression (`http.request.full_uri wildcard "http*://example.com/*/downloads/*.txt*"`).
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
---
{}

---

:::caution

The default behavior of Cache Rules is different from Page Rules. Refer to [Behavior change in Cache Rules](#behavior-change-in-cache-rules) for more information.
The default behavior of Cache Rules is different from Page Rules. Refer to [Key differences](#key-differences) for more information.

:::
Loading