Hi, we just cut over our DNS to our new webflow site from our former squarespace site.
Our address is www.gather.ai and our DNS provider is Route 53 / AWS. We are using www as the default domain and the root domain is set up to redirect to www. My problem is that I’m getting a suspicious answer from the redirect, although it seems to be working ok right now. For example, when we were on squarespace, the curl response to / was:
charliereverte@charlies-air-2 ~ % curl -v gather.ai
< HTTP/1.1 301 Moved Permanently
< Location: https://www.gather.ai/
(abbreviated)
After we cut over, the new response from webflow doesn’t redirect you to www. and the location instead points back at the root domain:
charliereverte@charlies-air-2 ~ % curl -v gather.ai
< HTTP/1.1 301 Moved Permanently
< Location: https://gather.ai/
(abbreviated)
I’m not sure how this is even working, I’m expecting this to be broken and cause a redirect loop but it seems ok right now. I’m worried that it is only working because of the old value being cached somewhere and it is going to break soon. Is this expected/normal? If so, why would the 301 response on a request to / not send you to www domain?
thanks,
Charlie