I need help to disable ssl on my website

Hello,
I currently have a website in Cloudflare and I have activated the flexible ssl, I already had enough time with this activated but now that I will use some tools I can not continue using https, now I need my site to be http, When in the SSL configuration I put "off “On my site I have the error” err_too_many_redirects "My site is in html and in the configuration of my site I have it with http, but it still continues to redirect to https and I get that error.

Sorry for my english, I use a translator

Greetings.

Hi,

To avoid such error -

  • You need to force HTTP carefully. There shouldn’t be any kind of vice-versa redirection like http to https, or again https to http. You need to maintain one type, everywhere.

To force all requests to go over HTTP instead of HTTPS, use below rule in the top of .htaccess file.

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP:X-Forwarded-Proto} ^https$
RewriteRule .* http://%{HTTP_HOST}%{REQUEST_URI}
</IfModule>