Skip to content

Instantly share code, notes, and snippets.

@shaina7837
Created October 4, 2015 14:24
Show Gist options
  • Save shaina7837/3f9cec3a93a98d5b3f5a to your computer and use it in GitHub Desktop.
Save shaina7837/3f9cec3a93a98d5b3f5a to your computer and use it in GitHub Desktop.
# Only allow direct access to specific Web-available files.
# Apache 2.2
<IfModule !mod_authz_core.c>
Order Deny,Allow
Deny from all
</IfModule>
# Apache 2.4
<IfModule mod_authz_core.c>
Require all denied
</IfModule>
# Akismet CSS and JS
<FilesMatch "^(form|akismet)\.(css|js)$">
<IfModule !mod_authz_core.c>
Allow from all
</IfModule>
<IfModule mod_authz_core.c>
Require all granted
</IfModule>
</FilesMatch>
# Akismet images
<FilesMatch "^(.+)\.(png|gif)$">
<IfModule !mod_authz_core.c>
Allow from all
</IfModule>
<IfModule mod_authz_core.c>
Require all granted
</IfModule>
</FilesMatch>
# BEGIN WordPress
# END WordPress
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment