I’m trying to submit a Change of Address to Google and its validation of checking that http://careercraft.app redirects to https://careercraft.com is failing because the 301 takes http://careercraft.app to https://careercraft.app (which then 301 redirects to https://careercraft.com). It looks like they don’t like dealing with multiple redirections like this and that there’s no way to disable HTTPS within Netlify. I tried writing a rewrite rule to redirect http://careercraft.app to https://careercraft.com but it doesn’t seem to be working. This is what I have in our netlify.toml.
[[redirects]]
from = "http://careercraft.app/*"
to = "https://careercraft.com/:splat"
force = true
Did I misconfigure something?