Skip to content

Instantly share code, notes, and snippets.

@yanknudtskov
Created May 4, 2014 18:01
Show Gist options
  • Save yanknudtskov/11521029 to your computer and use it in GitHub Desktop.
Save yanknudtskov/11521029 to your computer and use it in GitHub Desktop.
Harden WordPress through .htaccess
<files wp-config.php>
order allow,deny
deny from all
</files>
# Block the include-only files.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^wp-admin/includes/ - [F,L]
RewriteRule !^wp-includes/ - [S=3]
RewriteRule ^wp-includes/[^/]+\.php$ - [F,L]
RewriteRule ^wp-includes/js/tinymce/langs/.+\.php - [F,L]
RewriteRule ^wp-includes/theme-compat/ - [F,L]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment