Hey
I was fiddeling around with redirects today and I understand somewhat how it works. But I encountered some problems.
When I setup a redirect like:
/ http://blabla.myfritz.net:30000/
then I have a simple redirect that changes the URL after the redirect. So far so good.
If I use a netlify.toml, like:
[[redirects]]
from = "/*"
to = "http://blabla.myfritz.net:30000/:splat"
status = 200
It also works, kind of. It keeps the domain and I also get paths like /login
on my netlify domain.
The Problem is, though, that it’s extremly slow that way. Loading times ramp up from seconds to a minute.
Is there a better way to approach that, maybe?
Thanks