WordPress is well known for its awesome plugins and features. We can do many things in the go just with the help of simple plugins available in the market. So we can also get a free ssl certificate for the wordpress website with the help of plugin.
Do you want to get a free SSL certificate for WordPress website? You need a SSL certificate to accept online payments and secure your website. Starting today, July 1st, 2018, Google Chrome will show all websites not using SSL as insecure. And also SSL is needed to use the facebook and google api. That means login via facebook or google and more features the site must be SSL(https). In this article, we will show you how to easily get a free SSL certificate for your WordPress website.
The SSL cost varies from site to site. The price of the widely used hosting provider is listed below:
- Bluehost: 2.75/month
- Godaddy: $74.99/yr
- Crazydomains: 38.50/yr
- Godaddy: $74.99/yr
- Siteground: 3.95/mo
Don’t you think these costs really high? So here’s the solution. Just install the Really Simple SSL and activate it.
Upon activation, the plugin will check to see if your SSL certificate is enabled. After that, it will turn on http to https redirect and change your website settings to start using SSL/HTTPs.

But sometimes we need to redirect the http to https via .htaccess to work it properly. Incase if you don’t know how to do it? Place the following code in your htaccess file and replace https://www.example.com with your domain name. eg: https://www.yourdomain.com
[sourcecode language="plain"]
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.example.com/$1 [R,L]
[/sourcecode]
What the code actually means?
RewriteEngine On: It rewriting engine to rewrite requested URLs on the server .
RewriteRule ^(.*)$ : It defines the rule for all (represented by the *).
You might be interested in this topic as well:
1. BEST SEO PLUGINS FOR WORDPRESS WEBSITES
2. HOW TO DOWNLOAD SHUTTERSTOCK IMAGES FOR FREE?
3. FREE WEB DESIGN RESOURCES WEBSITE TO BOOKMARK
Leave A Reply