Secure WordPress Config File With htaccess

Updated: in Wordpress

Wordpress

Your wp-config.php file stores all of your config variables for your WordPress site. If someone has access to this file they will be able to see your database username and password.

When you first install WordPress there is a default wp-config-sample.php file which you need to rename and modify.

To keep this secure you can move this file outside of the WordPress root folder, WordPress is able to find this file one level up from the root.

Another way to secure the wp-config.php file is to use htaccess to deny access for everyone trying to access it. To use htaccess to deny access, add the following snippet in your htaccess file.

<Files wp-config.php>
 Order Allow,Deny
 Deny from all
</Files>

Keep updated with the latest tutorials and snippets.

Join me on Twitter | G+ | Facebook

Learn Web Design, Coding & More. No Risk. No Contracts. Learn More
Comment