Hi everyone
I am having troubles with a redirect chain on Netlify.
I have an issue where my site http://www.kassebil.dk/* redirects to https://www.kassebil.dk/* then https://kassebil.dk/* I am aware that this should be solvable within the _redirects file - however it does not seem to work for me. I have added
# Redirects from what the browser requests to what we serve
http://www.kassebil.dk/* https://kassebil.dk/*
What am I doing incorrectly here?
EDIT:
It seems to work if i use the netlify.toml file instead
[[redirects]]
from = "http://www.kassebil.dk/*"
to = "https://kassebil.dk/*"
force = true