# 错误 1101：您的计划中的页面规则过多。您有 3 条页面规则，但您的计划最多允许 3 条。

- **ID:** `policy/cloudflare-rate-limit-api-plan-exceeded`
- **领域:** policy
- **类别:** resource_error
- **错误码:** `1101`
- **验证级别:** ai_generated
- **修复率:** 90%

## 根因

Cloudflare 免费计划将页面规则限制为 3 条；尝试添加第 4 条会触发此错误。

## 版本兼容性

| 版本 | 状态 | 引入 | 弃用 |
|------|------|------|------|
| Cloudflare API v4 | active | — | — |
| Cloudflare Dashboard 2024 | active | — | — |

## 解决方案

1. ```
   Upgrade to a paid Cloudflare plan (Pro or Business) that allows more page rules. Pro plan allows 20 page rules. Upgrade via Cloudflare Dashboard > Billing.
   ```
2. ```
   Consolidate multiple page rules into fewer rules using wildcards or combined conditions. For example, instead of separate rules for '/blog/*' and '/news/*', use a single rule with pattern '/{blog,news}/*'.
   ```
3. ```
   Use Cloudflare Transform Rules (available on free plan) to handle some use cases like URL rewriting, which can reduce page rule count. Create a transform rule via Dashboard > Rules > Transform Rules.
   ```

## 无效尝试

- **Delete all page rules and recreate them in a different order.** — The limit is on the number of rules, not their order. Deleting and recreating doesn't increase the count. (100% 失败率)
- **Use Cloudflare Workers to implement the same logic and bypass page rules.** — Workers have their own limits and pricing; they are not a direct replacement for page rules. Also, Workers may not support all page rule features like URL forwarding. (50% 失败率)
- **Wait for the limit to reset (like a rate limit).** — This is a hard plan limit, not a rate limit. It does not reset over time. (100% 失败率)
