Learn with Gokul

man using black binoculars near forest trees at daytime

As famous Tamil poet Auvaiyar said “Katradhu Kai Mann Alavu, Kallathathu Ulaga Alavu” which is equivalent to  “Known is a drop, unknown is an ocean.” Even though we may have used some of the DevOps tools for some of the projects it is never complete. There will be a lot of scope to learn about … Read more

Ubuntu 20.04 commands for Beginners

date Displays the current date and time of the system cal Displays the current month’s calendar uptime shows the uptime of the system whoami current user’s name users logged in user name id current user’s id who w man reference manual of other commands ls Lists Directory cat View whole File at once more View … Read more

How to add ads.txt on Bluehost

We have already seen how to create ads.txt file if you are using Adsense. Now we can see How to add ads.txt on Bluehost How to add ads.txt on Bluehost: Step 1: Login to Bluehost hosting account. Step 2: Go to Cpanel Tab Step 3: Click on File Manager Step 4: In Director Selection Click on … Read more

How to get SSL Certificate in WordPress

How to get SSL Certificate in Wordpress

This method is for WordPress Websites. Other websites can skip the step5, 6, 7. Add Domain name in CloudFlare.net. Change Nameserver in Domain registration like GoDaddy or Bigrock. Select Crypto in CloudFlare and select Flexible SSL. Switch on Automatic https rewrites. Install CloudFlare plugin in WordPress. Switch on Automatic Redirects. Install Really simple SSL Plugin and Activate. … Read more

How to Redirect http to https://www through .htaccess

Redirect http to https://www through .htaccess. Simply add the code given below in the .htaccess file. The given code will generate only 302 redirect which means a temporary modification to search engines. RewriteEngine On RewriteCond %{HTTP_HOST} ^example\.com [NC] RewriteCond %{SERVER_PORT} 80 RewriteRule ^(.*)$ https://www.example.com/$1 [R,L] If you need 301 redirection which is a permanent redirection, … Read more