Skip to content

Instantly share code, notes, and snippets.

@stefanpejcic
Created August 29, 2019 11:13
Show Gist options
  • Save stefanpejcic/e9ad60f5c364a26a99049f6c527ca9d7 to your computer and use it in GitHub Desktop.
Save stefanpejcic/e9ad60f5c364a26a99049f6c527ca9d7 to your computer and use it in GitHub Desktop.
protect 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