Skip to content

Commit 1e9afc3

Browse files
dcpenapedrosousa
authored andcommitted
[Fundamentals & Rules] Moved Trace Request & added redirects (cloudflare#22719)
* Moved Trace Request & added redirects * Fixed yaml for changelog * Fixed broken links * Update src/content/release-notes/trace.yaml Co-authored-by: Pedro Sousa <[email protected]> --------- Co-authored-by: Pedro Sousa <[email protected]>
1 parent 5d1efe9 commit 1e9afc3

File tree

15 files changed

+16
-13
lines changed

15 files changed

+16
-13
lines changed

public/__redirects

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -698,7 +698,10 @@
698698
/fundamentals/subscriptions-and-billing/delete-account/ /fundamentals/setup/account/delete-account/ 301
699699
/fundamentals/subscriptions-and-billing/ /fundamentals/setup/account/ 301
700700
/fundamentals/api/building-custom-dashboards/ /fundamentals/api/ 301
701-
701+
/fundamentals/trace-request/ /rules/trace-request/ 301
702+
/fundamentals/trace-request/how-to/ /rules/trace-request/how-to/ 301
703+
/fundamentals/trace-request/limitations/ /rules/trace-request/limitations/ 301
704+
/fundamentals/trace-request/changelog/ /rules/trace-request/changelog/ 301
702705

703706
# gateway
704707
/gateway/about/ /cloudflare-one/policies/gateway/ 301

src/content/changelog/rules/2025-01-09-rules-overview.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ What you can do:
1515
- **See all your rules in one place** – No more clicking around.
1616
- **Find rules faster** – Search by name.
1717
- **Understand execution order** – See how rules run in sequence.
18-
- **Debug easily** – Use [Trace](/fundamentals/trace-request/) without switching tabs.
18+
- **Debug easily** – Use [Trace](/rules/trace-request/) without switching tabs.
1919

2020
Check it out in [Rules > Overview](https://dash.cloudflare.com/?to=/:account/:zone/rules/overview).

src/content/changelog/rules/2025-04-09-snippets-ga.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ What's new:
1717
- **Snippets are now GA** – Available at no extra cost on all Pro, Business, and Enterprise plans.
1818
- **Ready for production** – Snippets deliver a production-grade experience built for scale.
1919
- **Part of the Cloudflare Rules platform** – Snippets inherit request modifications from other Cloudflare products and support sequential execution, allowing you to run multiple Snippets on the same request and apply custom modifications step by step.
20-
- **Trace integration** – Use [Cloudflare Trace](/fundamentals/trace-request/) to see which Snippets were triggered on a request — helping you understand traffic flow and debug more effectively.
20+
- **Trace integration** – Use [Cloudflare Trace](/rules/trace-request/) to see which Snippets were triggered on a request — helping you understand traffic flow and debug more effectively.
2121

2222
![Snippets shown in Cloudflare Trace results](~/assets/images/changelog/rules/snippets-ga-trace.gif)
2323

src/content/docs/rules/reference/page-rules-migration.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Improvements in modern Rules features include:
3232

3333
- **New engine**: New Rules features are powered by the [Ruleset Engine](/ruleset-engine/), which offers versatile configuration with a robust language that supports many HTTP request and response fields.
3434
- **Improved scalability**: Thanks to the improved scalability, Cloudflare plans now have increased quotas.
35-
- **Easier troubleshooting**: Rule execution is more predictable, since each rule operates independently, simplifying troubleshooting. Additionally, [Cloudflare Trace](/fundamentals/trace-request/) helps understand rule interactions.
35+
- **Easier troubleshooting**: Rule execution is more predictable, since each rule operates independently, simplifying troubleshooting. Additionally, [Cloudflare Trace](/rules/trace-request/) helps understand rule interactions.
3636
- **Improved consistency**: New Rules features also ensure consistency, with common fields and capabilities shared across products, offering a seamless experience and predictable Terraform configurations.
3737

3838
## Key differences
File renamed without changes.
File renamed without changes.

src/content/docs/fundamentals/trace-request/index.mdx renamed to src/content/docs/rules/trace-request/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
pcx_content_type: concept
33
title: Trace a request
44
sidebar:
5-
order: 5
5+
order: 14
66
badge:
77
text: Beta
88
head:
File renamed without changes.

src/content/docs/rules/transform/troubleshooting.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ For more information on runtime errors related to Transform Rules configuration,
1616

1717
Transform Rules performing request header modifications affect the HTTP headers sent by Cloudflare's network to your origin server. You will not find these headers in your browser request or response data, which can make it difficult to tell if the rule is working as intended.
1818

19-
To check if a request header transform rule is taking effect, you can check the logs on your origin server or use [Cloudflare Trace](/fundamentals/trace-request/) to check that the rule is matching traffic correctly. Since [Cloudflare Logpush](/logs/about/) only logs original HTTP request/response headers, Logpush logs will not include any header transformations done via Transform Rules.
19+
To check if a request header transform rule is taking effect, you can check the logs on your origin server or use [Cloudflare Trace](/rules/trace-request/) to check that the rule is matching traffic correctly. Since [Cloudflare Logpush](/logs/about/) only logs original HTTP request/response headers, Logpush logs will not include any header transformations done via Transform Rules.
2020

2121
To add HTTP headers that website visitors will receive in their browsers, you must [modify the response headers](/rules/transform/response-header-modification/) instead.

src/content/docs/rules/transform/url-rewrite/create-dashboard.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,6 @@ Refer to [URL rewrite parameters](/rules/transform/url-rewrite/reference/paramet
7070

7171
The **Request URL** value is only used to match the incoming request with a rule. It will not be used for capturing URL patterns for rewrites. If you are matching the URL path or query string in **Target path** or **Target query**, respectively, make sure that the **Request URL** pattern also matches the incoming request, or else the rule will not trigger.
7272

73-
To validate URL rewrite rule matches, use [Cloudflare Trace](/fundamentals/trace-request/). To validate rewritten URLs, check your origin server.
73+
To validate URL rewrite rule matches, use [Cloudflare Trace](/rules/trace-request/). To validate rewritten URLs, check your origin server.
7474

7575
:::

0 commit comments

Comments
 (0)