Thread Rating:
  • 1 Vote(s) - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Wordpress Security settings
#3
Thumbs Up 
Thanks for the list Edward.

I will add the below to your ones 

1. Hide your author usernames by adding these codes into functions.php file

Code:

add_action('template_redirect', 'bwp_template_redirect');
function bwp_template_redirect()
{
if (is_author())
{
wp_redirect( home_url() ); exit;
}
}


2. Make sure you add proper protection to bruteforce attacks on wp-login.php and xmlrpc.php either using fail2ban or modsecurity as these are the best methods than blocking using a plugin or htaccess.
#####
Linux Server Administrator 
More than 10 years of experience in Linux server and Hosting Outsourced support
ServerTechnicians.com
Reply


Messages In This Thread
Wordpress Security settings - by Techyllinux - 11-01-2016, 03:14 PM
RE: Wordpress Security settings - by Edward - 11-02-2016, 02:20 PM
RE: Wordpress Security settings - by sumesh - 11-02-2016, 02:47 PM
RE: Wordpress Security settings - by Techyllinux - 11-04-2016, 07:24 AM
RE: Wordpress Security settings - by sumesh - 11-06-2016, 03:39 PM
RE: Wordpress Security settings - by sumesh - 11-17-2016, 02:33 PM

Forum Jump:


Users browsing this thread: 1 Guest(s)