How To Remove Bitnami Banner From WordPress on AWS EC2

In this tutorial I will show you how to remove the Bitnami corner banner that appears on your WordPress site after installing WordPress on AWS EC2.
There are 2 method to Remove Bitnami Banner From WordPress
1. Custom CSS method
If you would rather disable the banner using CSS, enter the following code in your WordPress custom CSS:
{Read:- Best PWA WordPress Plugins 2021 }
1 |
#bitnami-banner {display:none;} |
2. Command to Disable Bitnami Banner
First you have to connect with your EC2 instance using SSH.
SSH window that pops up, enter the command below to disable the Bitnami corner banner.
{Read:- How to edit ads.txt without Cpanel in WordPress }
First common will disabled the bitnami banner and 2nd command will be restart Apache. Restarting Apache after making changes is generally considered a good practice.
1 2 |
sudo /opt/bitnami/apps/wordpress/bnconfig --disable_banner 1 sudo /opt/bitnami/ctlscript.sh restart apache |

You will not longer see the Bitnami banner at the corner of your WordPress website.
{Read:- SEO Benefits of Pingback in WordPress }