Per
/news/* /blog/:splat
This would redirect paths like /news/2004/01/10/my-story
to /blog/2004/01/10/my-story
.
So for rule @ here:
from = "/api/*"
to = "/.netlify/functions/gateway/:splat"
This would redirect paths like /api/feed
to /.netlify/functions/gateway/feed
, right?
However, why https://go-function-demo.netlify.app/api/feed is OK while
https://go-function-demo.netlify.app/.netlify/functions/gateway/feed is not OK?
What I’m missing please?