Site name: utils.syncora.be / syncora-utils
Yesterday we tested one of our functionalities, a simple short linking service, and we noticed the redirects not working anymore.
Looking into the logs, I noticed that the path that is being requested was wrong:
Original url: https://url.syncora.be/greatescape/bwsadd
Redirect config:
[[redirects]]
from = "https://url.syncora.be/*"
to = "https://utils.syncora.be/url/:splat"
status = 200
force = true
Expected redirect: https://utils.syncora.be/url/greatescape/bwsadd
Actual redirect: https://utils.syncora.be/url/url/greatescape/bwsadd
→ Notice the second /url
in the path.
I tried redeploying: same result
I removed the /url
from my redirect config: would redirect without any url
parth in the path, as expected
Re added the correct part → again double /url in path
So there seems to be something broken at the moment, with no way of fixing it.
I did work around it by also acceping the double /url/url
path in my application for now, but this gives me very litle confidence in the stability of the platform…