Hi all,
I have a simple site based on Wordpress with Apache webserver. I’ve tried using Wordfence which is a security plugin, but it slows my site quite a bit and I was wondering if any one has any basic tops on how to secure Wordpress without having to add more plugins?
Note that I already have fail2ban enabled.
Thanks a lot!
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hello,
I will try to focus purely on the Wordpress side of things, but of course, having a secure server is also extremely important.
Here are some of the things that I could suggest:
The basics:
Always update WordPress to the latest version Security is arguably the most important reason why you should keep your WordPress website up to date. You really do not have any excuses for not updating your WordPress version as this can be done with just a click of a button and it only takes a few seconds/minutes.
Keep an eye on your plugins I would strongly recommend to keep the plugin count to a minimum and always keep your plugins updated. More often than not attackers are able to gain access via an outdated plugin. I would also suggest deleting any plugins that you are not using
Delete any themes that you’re not using Quite often people would install a few themes and just leave them on the site disabled and outdated. This opens up a lot of vulnerabilities so I would suggest just deleting any themes that you do not use and just have your active theme installed.
The power of the
.htaccess
file - Here are some nice .htaccess rules that you could use in order to protect your site, this takes only a few minutes to copy and paste these rules into your .htaccess file so I strongly suggest that you add at least some of them.wp-includes
folder:.htaccess
php
files in your uploads folder. This one is a bit more specific as you should not add it to your main.htaccess
file. Upload a file called .htaccess to the root of wp-content/uploads with the following line:Protect your wp-admin area
Use 2FA - For example, you could try using the Google authentication plugin.
Enable limit login attempts - This would protect you against brute force attacks.
Enable reCacptcha - Generally speaking, this would protect you against any kind of bots.
Last but not least - Use a complex unique password for your admin user.
I hope that this helps and if anyone has any other suggestions please feel free to add them below!
- Bobby