Skip to content

Commit 22a3a9b

Browse files
authored
[Rules] Update dashboard instructions (#20250)
1 parent 5e61ac6 commit 22a3a9b

File tree

13 files changed

+17
-18
lines changed

13 files changed

+17
-18
lines changed

src/content/docs/rules/compression-rules/create-dashboard.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ head:
1010

1111
1. Log in to the [Cloudflare dashboard](https://dash.cloudflare.com) and select your account and domain.
1212
2. Go to **Rules** > **Overview**.
13-
3. Next to **Compression Rules**, select **Create rule**.
13+
3. Select **Create rule** > **Compression Rule**.
1414
4. (Optional) Select one of the rule templates that address common use cases. Then, review and adjust the proposed rule configuration.
1515
5. Enter a descriptive name for the rule in **Rule name**.
1616
6. Under **When incoming requests match**, select if you wish to apply the rule to [default content types](/speed/optimization/content/compression/#compression-between-cloudflare-and-website-visitors) (content types that Cloudflare compresses by default), or to requests that match a custom filter expression.

src/content/docs/rules/configuration-rules/create-dashboard.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ head:
1010

1111
1. Log in to the [Cloudflare dashboard](https://dash.cloudflare.com) and select your account and domain.
1212
2. Go to **Rules** > **Overview**.
13-
3. Next to **Configuration Rules**, select **Create rule**.
13+
3. Select **Create rule** > **Configuration Rule**.
1414
4. (Optional) Select one of the rule templates that address common use cases. Then, review and adjust the proposed rule configuration.
1515
5. Enter a descriptive name for the rule in **Rule name**.
1616
6. Under **When incoming requests match**, select if you wish to apply the rule to all incoming requests or only to requests that match a custom filter expression.

src/content/docs/rules/normalization/manage.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ description: How to configure URL normalization in the Cloudflare dashboard.
99

1010
1. Log in to the [Cloudflare dashboard](https://dash.cloudflare.com/), and select your account and website.
1111

12-
2. Go to **Rules** > **Overview** > **URL Normalization**.
12+
2. Go to **Rules** > **Overview** and select **URL Normalization**.
1313

1414
3. Configure the [available URL normalization settings](/rules/normalization/settings/).
1515

src/content/docs/rules/origin-rules/create-dashboard.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ head:
1010

1111
1. Log in to the [Cloudflare dashboard](https://dash.cloudflare.com) and select your account and domain.
1212
2. Go to **Rules** > **Overview**.
13-
3. Next to **Origin Rules**, select **Create rule**.
13+
3. Select **Create rule** > **Origin Rule**.
1414
4. (Optional) Select one of the rule templates that address common use cases. Then, review and adjust the proposed rule configuration.
1515
5. Enter a descriptive name for the rule in **Rule name**.
1616
6. Under **When incoming requests match**, define the [rule expression](/ruleset-engine/rules-language/expressions/edit-expressions/).

src/content/docs/rules/origin-rules/examples/change-uri-path-and-host-header.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ To change URI Path and Host Header on incoming requests simultaneously:
1414

1515
1. Log in to the [Cloudflare dashboard](https://dash.cloudflare.com/) and select your account and domain.
1616
2. Create a URL rewrite:
17-
- Navigate to **Rules** > **Overview**.
18-
- Next to **URL Rewrite Rules**, select **Create rule** .
17+
- Go to **Rules** > **Overview**.
18+
- Select **Create rule** > **URL Rewrite Rule**.
1919
- Configure the rule to modify the path. For instance, to remove `/uploads` from the path:
2020

2121
<Example>
@@ -37,8 +37,8 @@ regex_replace(raw.http.request.uri.path, "^/uploads/", "/")
3737
The `regex_replace()` [function](/ruleset-engine/rules-language/functions/#regex_replace) replaces the `/uploads/` part of the path with `/`, changing `/uploads/example.jpg` to `/example.jpg`.
3838

3939
3. Create an **Origin Rule**:
40-
- If routing traffic to an object storage bucket, use [Cloud Connector](/rules/cloud-connector/). Otherwise, navigate to **Rules** > **Overview**.
41-
- Next to **Origin Rules**, select **Create rule**, and then select **Host Header** > **Rewrite to**.
40+
- If routing traffic to an object storage bucket, use [Cloud Connector](/rules/cloud-connector/). Otherwise, go to **Rules** > **Overview**.
41+
- Select **Create rule** > **Origin Rule**, and then select **Host Header** > **Rewrite to**.
4242
- Configure the rule to modify the Host header to desired hostname:
4343

4444
<Example>

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { Render, TabItem, Tabs, Example } from "~/components";
99

1010
Cloudflare is continuously improving its platform to deliver more powerful and scalable tools for managing your configurations. To help you take full advantage of these improvements, we recommend using [modern Rules features](/rules/) for new implementations. These products address the limitations of Page Rules while providing greater flexibility, scalability, and ease of use.
1111

12-
For a quick start, explore the one-click templates available in the Cloudflare dashboard in **Rules** > **Templates**. These templates simplify common configurations like redirects, rewrites and header modifications, making setup faster and easier.
12+
For a quick start, explore the one-click templates available in the Cloudflare dashboard in **Rules** > **Overview**. These templates simplify common configurations like redirects, rewrites and header modifications, making setup faster and easier.
1313

1414
## Page Rules migration
1515

@@ -73,7 +73,7 @@ becomes a **filter expression** such as:
7373

7474
To help you map existing Page Rules to modern Rules products, this table outlines how Page Rules settings translate to modern Rules and provides examples for common configurations.
7575

76-
Also, to streamline common configurations, the Cloudflare dashboard now includes dozens of one-click templates, available in **Rules** > **Templates**. These templates enable you to deploy commonly used features — such as redirects, rewrites, and header modifications — instantly, with pre-filled filter expressions and actions. Explore these templates in the dashboard for a faster setup.
76+
Also, to streamline common configurations, the Cloudflare dashboard now includes dozens of one-click templates, available in **Rules** > **Overview**. These templates enable you to deploy commonly used features — such as redirects, rewrites, and header modifications — instantly, with pre-filled filter expressions and actions. Explore these templates in the dashboard for a faster setup.
7777

7878
| Page Rules setting | New implementation uses... | Migration/Replacement instructions |
7979
| --------------------------- | ------------------------------------ | --------------------------------------------------------------------------- |

src/content/docs/rules/transform/managed-transforms/configure.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import { Details, TabItem, Tabs, Render } from "~/components";
1515

1616
2. Go to **Rules** > **Overview**.
1717

18-
3. Next to **URL Rewrite Rules**, select **Manage URL Rewrite Rules** and go to the **Managed Transforms** tab.
18+
3. Next to **Request Header Transform Rules** or **Response Header Transform Rules**, select **Go to Managed Transforms**.
1919

2020
4. Enable or disable the [desired Managed Transforms](/rules/transform/managed-transforms/reference/) by selecting the toggle next to each entry. The Cloudflare dashboard will only list available Managed Transforms according to your Cloudflare plan and product subscriptions.
2121

src/content/docs/rules/transform/request-header-modification/create-dashboard.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ To create a rule:
1616

1717
2. Go to **Rules** > **Overview**.
1818

19-
3. Next to **Request Header Transform Rules**, select **Create rule**.
19+
3. Select **Create rule** > **Request Header Transform Rule**.
2020

2121
4. (Optional) Select one of the rule templates that address common use cases. Then, review and adjust the proposed rule configuration.
2222

src/content/docs/rules/transform/response-header-modification/create-dashboard.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ To create a rule:
1616

1717
2. Go to **Rules** > **Overview**.
1818

19-
3. Next to **Response Header Transform Rules**, select **Create rule**.
19+
3. Select **Create rule** > **Response Header Transform Rule**.
2020

2121
4. (Optional) Select one of the rule templates that address common use cases. Then, review and adjust the proposed rule configuration.
2222

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ To create a rule:
1616

1717
2. Go to **Rules** > **Overview**.
1818

19-
3. Next to **URL Rewrite Rules**, select **Create rule**.
19+
3. Select **Create rule** > **URL Rewrite Rule**.
2020

2121
4. (Optional) Select one of the rule templates that address common use cases. Then, review and adjust the proposed rule configuration.
2222

0 commit comments

Comments
 (0)