How to Password Protect Your WordPress Admin (wp-admin) Directory

Protecting the wp-admin directory is an important security measure for your WordPress website. Here are a few reasons why you would want to password-protect the wp-admin directory:

  1. Unauthorised Access Prevention: The wp-admin directory is the heart of your WordPress website’s administration area. It allows you to manage and control various aspects of your site, including themes, plugins, user accounts, and settings. By password protecting this directory, you add an extra layer of security to prevent unauthorised users from accessing and potentially compromising your website.
  2. Brute-force Attack Mitigation: Brute-force attacks are when hackers use automated scripts to repeatedly guess usernames and passwords to gain access to your website. By password protecting the wp-admin directory, you can significantly reduce the risk of such attacks since the attackers would need to bypass the additional password prompt to proceed.
  3. Admin Area Protection: The wp-admin directory contains sensitive information and powerful functionalities. By password protecting it, you ensure that only authorised users with the correct credentials can access and make changes to your website’s administration area. This helps prevent unauthorised modifications or malicious actions by potential attackers.

Remember that password protecting the wp-admin directory should be one part of a comprehensive security strategy. It’s essential to implement other security measures such as using strong passwords, keeping your WordPress core, themes, and plugins up to date, and installing security plugins or firewalls to further enhance the overall security of your WordPress website.

How to password protect your WP-Admin directory using htaccess

To password protect your WordPress admin (wp-admin) directory, you can use a web server feature called “htaccess” to add an extra layer of security. Here’s a step-by-step guide on how to do it:

  1. Connect to your WordPress site via FTP or through the file manager in your hosting control panel.
  2. Locate the root directory of your WordPress installation, which usually contains the “wp-admin” folder.
  3. In the root directory, look for a file called “.htaccess”. If you can’t find it, create a new file and name it “.htaccess” (don’t forget the dot at the beginning).
  4. Open the “.htaccess” file with a text editor.
  5. Add the following lines of code to the file:
AuthType Basic
AuthName "Restricted Access"
AuthUserFile /path/to/.htpasswd
Require valid-user

Replace “/path/to/.htpasswd” with the actual path to your password file. If the file doesn’t exist, the server will create it when you set up the password.

  1. Save the changes and close the file.
  2. Now, you need to create the password file. Open a new text file and name it “.htpasswd” (again, don’t forget the dot). Each line in this file should contain a username followed by a colon (:) and the encrypted password. For example:
username1:$apr1$Txbftgx9$uW3JgzFgZV6qvRuzk3KRY/
username2:$apr1$5kM09bvg$9vD3DKGS8V9iPV.AKMjgl0

To generate the encrypted password, you can use online tools or a utility like htpasswd.

  1. Upload both the “.htaccess” and “.htpasswd” files to the root directory of your WordPress installation, where the “wp-admin” folder is located.
  2. Test the password protection by accessing the wp-admin URL in your browser. You should be prompted to enter the username and password specified in the “.htpasswd” file.

By following these steps, you’ll add an extra layer of security to your WordPress admin directory, making it more difficult for unauthorised users to access it. If you require any assistance with this, please feel free to contact us.

WordPress Maintenance from £30.00/month

Experience unparalleled WordPress support and maintenance with our exceptional service plans. Entrust us with all your WordPress needs, guaranteeing the seamless operation and upkeep of your website.

Get Started