Forum Moderators: open
So if you have an https only site you cannot link to a pdf on an http site?
It really means we are going to have to have secure sites everywhere, like it or not. :(Yes, that seems the goal. They left out Chrome 87 in this graph but I wouldn't be surprised when in that version or a few versions later, linking from https sites to HTML pages on non-encrypted sites will be blocked, effectively splitting the internet between an accessible encrypted part and an isolated part without encryption.
What if they're on http sites? Will they still be included in the search results?
OpenSSL is a software library for applications that secure communications over computer networks against eavesdropping or need to identify the party at the other end. It is widely used by Internet servers, including the majority of HTTPS websites.
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
[edited by: mcneely at 7:56 pm (utc) on Feb 9, 2020]
What if they're on http sites? Will they still be included in the search results?
OpenSSL is a software library for applications that secure communications over computer networks against eavesdropping or need to identify the party at the other end. It is widely used by Internet servers, including the majority of HTTPS websites.
[en.wikipedia.org...]
If you have PDF's, Video's, or any other files being served over a so-called HTTP connection, you can force SSL via your .htaccess writes in order to deliver everything you have over a secure connection.
You can force an HTTPS connection on your website by adding these rules in your website's .htaccess file:
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ [%{HTTP_HOST}%{REQUEST_URI}...] [L,R=301]
[siteground.com...]
It is more work than pasting some code in the .htaccess file.
[edited by: mcneely at 8:23 pm (utc) on Feb 9, 2020]
Without certificates, webservers won't deliver an encrypted connection
I don't know why certificates are needed for most sites anyway.
Maybe one of the purposes in requiring them is to extract money from webmasters.
Another question: PDF files and video files often appear in google's search results. What if they're on http sites? Will they still be included in the search results?
it could have worked the way ssh does
Mixed Content: The page at 'https://www.example.com/' was loaded over HTTPS, but requested an insecure image 'http://l1.yimg.com/foo/bar'. This content should also be served over HTTPS.