Hello,
I have connected a domain to my site. Let’s call it example.com
The following is the rewrite rule:
[[redirects]]
from = "/*"
to = "https://proxy.example.com/:splat"
status = 200
force = true
https://example.com/abc => works as expected. Renders the proxy page.
https://example.com/abc/ => does NOT work as expected
. It is redirected (301) to https://proxy.example.com/abc. But I want to rewrite trailing slash urls also.
Can sometime help me figure this out?