我需要有关CloudFlare的帮助。我们正在设计REST后端,并且需要版本控制。虽然我知道在HTTP标头中编码版本的优点,但我们决定暂时将其放在URL中。我们的版本代码看起来像这样:
GET /api/customers <--- latest version
GET /v3/api/customers <--- highest v3.x
GET /v3.1/api/customers <--- specific v3.1
GET /v2/api/customers <--- highest v2.x
GET /v2.7/api/customers <--- specific v2.7
我的问题是:如何在CloudFlare中解决此问题?