Webflow Cloudflare Error

I am using Webflow as my CMS and Cloudflare for DNS handling.

I followed the instructions from Cloudflare to connect my site to Webflow but I am getting this error:

This page isn’t working

anthonyclark.com redirected you too many times.

ERR_TOO_MANY_REDIRECTS

I cannot figure out what is causing this.

Any help is appreciated.

Check your SSL/TLS setting is set to “Full (strict)” in your dashboard here…
https://dash.cloudflare.com/?to=/:account/:zone/ssl-tls

1 Like

I have made that change and the error is still happening.

You have a redirect configured on the origin site that serves your naked domain. It returns a 301 redirect to your www hostname.

You have a redirect configured on your www origin site the responds with a 301 redirect to the naked domain.

You need to decide which one should be canonical and only redirect the other to it.

% curl -Iiv https://anthonyclark.com/
*   Trying 75.2.70.75:443...
* Connected to anthonyclark.com (75.2.70.75) port 443 (#0)
...
HTTP/2 301 
...
location: https://www.anthonyclark.com/

% curl -Iiv https://www.anthonyclark.com/
*   Trying 54.68.171.176:443...
* Connected to www.anthonyclark.com (54.68.171.176) port 443 (#0)
...
HTTP/2 301 
...
location: https://anthonyclark.com/

I’d like the www to be canonical.

How do I fix this?

1 Like

You will want to visit the settings for the www site and disable the redirect to the apex name. How exactly you update that setting is hopefully contained in that platform’s documentation.

I am not familiar with the configuration of Webflow, but these docs may help.

1 Like

I just figured it out.
I had to made the ‘www’ the default in the Webflow publishing settings, and then republish the site.
It’s fixed now.

Thank you very much for your help!

1 Like

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.