Not Securely Connected Site Security Warning
According to the search engines Google, secure websites will be treated as importance regards when determining rank. This means that your site could be rated higher if it begins with the “HTTPS:” prefix. This is because secure socket layers protect visitors from several types of fraud by encrypting the transmission of data. It will so called makes it far more difficult to “snoop” and steal information.
SSL Certificate?
SSL stands for Secure Sockets Layer, which is a global standard security technology. This enables encrypted communication between a web browser and a web server. SSL certificate is actually a bunch of small data files that digitally bind a cryptographic key to an organization’s details.
When you install one on your website, it activates the padlock and the https protocol. This allows secure connections from a web server to a browser. In the past SSL certificate would usually only be found on websites that were performing financial transactions and taking personal information.
First, they became popular for all social media sites. Then, Google started encouraging all sites to have a SSL during the year 2017. At this point, it is highly recommended to have one onto your WordPress.
Installing the SSL Certificate
Installation of the SSL certificate onto your WordPress is simply easy. There is very little coding or changes involved on your side. Simply go to your WordPress plugins page and search the plugin name after that install and activate it right from there.
Not Securely Connected Site Security Warning
In some cases, when you see an SSL warning even though you have an SSL certificate installed. This happens when your WordPres pages include mixed content which mixes secure HTTPS URLs and insecure HTTP URLs. It could be disaster to you.
You may try resolve it with the following steps:
Configure the WordPress settingsDNS correctionModify .htaccessModify NginxUsing WordPress SSL pluginIdentify and update mixed-content URLs
1. Configure Your WordPress Settings
After installing the plugin to govern your SSL, it’s time to change the settings in WordPress. The process isn’t difficult. From your dashboard, click on Settings > General.
You will see a text box for “Site Address.” Make sure your domain’s prefix shows “https.” This will help the redirect of your secure content and will solve a few problems with posts and pages not showing correctly.
2. DNS Correction
So what is my website ip address? You had to make sure that the WordPress site ip address and dns record for web both are the same. Investigate domains and IP addresses. Get registrant information, DNS records, and get more details at central ops.
3. Modifying the .htaccess
Should you want to modify the .htaccess manually, the coding is quite simple. Just open the file in an editor and enter the following lines:
# HTTP TO HTTPS #
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule .* https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
</IfModule>
4. Modifying Nginx
Let’s edit Nginx virtual host configuration file:
vi /etc/nginx/example.com.conf
and add the below content. change example.com with your actual domain name. Also, add any other required settings specific for your Virtual host.
# Force all users to https://www.example.com
server {
listen 80;
server_name example.com www.example.com;
return 301 https://www.example.com$request_uri;
}
server {
listen 443 ssl;
server_name example.com;
ssl_certificate /etc/nginx/ssl/www.example.com.pem;
ssl_certificate_key /etc/nginx/ssl/www.example.com.key;
return 301 https://www.example.com$request_uri;
}
server {
listen 443 ssl;
server_name www.example.com;
root /var/www/html
error_page 403 /error/404.html;
error_page 404 /error/404.html;
error_page 500 502 503 504 /error/50x.html;
ssl_certificate /etc/nginx/ssl/www.example.com.pem;
ssl_certificate_key /etc/nginx/ssl/www.example.com.key;
}
After making the change to the configuration file, restart your Nginx web server.
5. Using WordPress SSL plugin
Below are some of the plugins i had tried with many WordPress site.
Really Simple SSL
The Really Simple SSL plugin requires no additional setup outside of installation and activation. It will automatically make the changes to the .htaccess file if the SSL is detected on your site. You can also view the configuration settings of what has been controlled by the plugin.
Cloudflare Flexible SSL
For those who uses Cloudflare for their SSL, this plugin highly a must install. Enabling Flexible SSL options within your cloudflare to prevent infinite redirect loops when loading WordPress sites. The Cloudfare Flexible SSL is the best way to perform with Cloudflare.
6. Identify and update mixed-content URLs
Use a WordPress plugin like the SSL Insecure Content Fixer plugin to identify and update mixed-content URLs.
In Conclusion
Setting up a WordPress SSL certificate is easy than you think. It can help visitors feel confident in your business website while enhancing your site in search engines. Just another info you might need to know, there are free SSL certificate out there. The Let’s Encrypt SSL/TLS certificate is free and Cloudflare also providing free SSL too. Since Google has started putting more weight and ranking on sites that carry an SSL, it is definitely a good idea to install a SSL Certificate for your WordPress if you haven’t already.
The post Not Securely Connected Site Security Warning appeared first on Wordpress Tip Guide Support Solution.
Artikel ini hanyalah simpanan cache dari url asal penulis yang berkebarangkalian sudah terlalu lama atau sudah dibuang :
https://www.jonloh.com/not-securely-connected-site-security-warning/