Traffic Served Over TLS Cloudflare

What is Traffic Served Over TLS?

And why is this not full tls v1.3 or 1.2. I have a ssl Certificate but why there is still not secure connection?

If you can open your website using HTTPS, there’s nothing to worry about.
Or they’re bots (?)

I alredy enabled https

Why there is still not secure

Might be possible if your website is’nt redirecting all http traffic to https. To do that, you need to ass a few lines of code into your .htaccess file

RewriteEngine on
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}

Once this is done, your problem might resolve

1 Like

What your seeing is extremely common, my website is the same:


It’s just the way Cloudflare handles different browsers and requests. Older browsers don’t support newer versions of TLS v3.0, and so they are forced to use an older version.

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