For some strange reason, http www links aren’t triggering my netlify.toml’s redirection rules no matter how many rules I’m adding. What could be the issue?
Website:
https://www.confluencerecording.org/
Context:
http://universalmusicdesign.org is a Domain alias for http://www.confluencerecording.org
https://universalmusicdesign.org/ works as expected, redirecting to Universal Music Design
http://www.universalmusicdesign.org doesn’t work as expected, it goes to http://www.confluencerecording.org instead of the Universal Music Design page.
Pretty strange because in my nelify rules, the last item is from http://www.universalmusicdesign.org
to https://www.confluencerecording.org/universalmusicdesign
.
My nelify.toml are as follows:
[build]
publish = "."
[[redirects]]
from = "https://universalmusicdesign.org/"
to = "https://www.confluencerecording.org/universalmusicdesign"
status = 301
force = true
[[redirects]]
from = "http://universalmusicdesign.org/"
to = "https://www.confluencerecording.org/universalmusicdesign"
status = 301
force = true
[[redirects]]
from = "www.universalmusicdesign.org"
to = "https://www.confluencerecording.org/universalmusicdesign"
status = 301
force = true
[[redirects]]
from = "http://www.universalmusicdesign.org/"
to = "https://www.confluencerecording.org/universalmusicdesign"
status = 301
force = true
All four rules are detected by netlify:
This entire thing have made me to wish that there was an offline way to quickly test that redirect rules are working as expected… Building the website over and over to test each little tweak is eroding away my soul, heh.
Anyway, do anyone know what could be wrong here?