DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Harden Wordpress
Harden Wordpress. In addition to the recommendations on the Website.
<Directory "/example/htdocs/wp-content/uploads/">
php_admin_flag engine off
</Directory>
<Directory "/example/htdocs/wp-content/themes/">
<Files *php>
Order allow,deny
Deny from all
</Files>
</Directory>




