From e15cf5e2a4f52a1040c562cc8e677224241c44fa Mon Sep 17 00:00:00 2001 From: bdbtst <128909569+bdbtst@users.noreply.github.com> Date: Thu, 20 Apr 2023 10:30:40 +0100 Subject: [PATCH] Update README.md The ? in line 374 was escaped with \\ which stops the custom route from working. It works without the slashes. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 41566a580..7ed17e683 100644 --- a/README.md +++ b/README.md @@ -371,7 +371,7 @@ Create a `routes.json` file. Pay attention to start every route with `/`. "/api/*": "/$1", "/:resource/:id/show": "/:resource/:id", "/posts/:category": "/posts?category=:category", - "/articles\\?id=:id": "/posts/:id" + "/articles?id=:id": "/posts/:id" } ```