]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-content/plugins/akismet/.htaccess
WordPress 4.2.3-scripts
[autoinstalls/wordpress.git] / wp-content / plugins / akismet / .htaccess
index 6d8b4ec29c0008c1a2c181d32f0840a2d5e2dcf2..f271986ee72a77482186ded595d98b7a12933866 100644 (file)
@@ -1,11 +1,34 @@
-Order Deny,Allow
-Deny from all
+# 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)$">
-       Allow from all
+       <IfModule !mod_authz_core.c>
+               Allow from all
+       </IfModule>
+       
+       <IfModule mod_authz_core.c>
+               Require all granted
+       </IfModule>
 </FilesMatch>
 
-#allow access to any image
+# Akismet images
 <FilesMatch "^(.+)\.(png|gif)$">
-       Allow from all
+       <IfModule !mod_authz_core.c>
+               Allow from all
+       </IfModule>
+       
+       <IfModule mod_authz_core.c>
+               Require all granted
+       </IfModule>
 </FilesMatch>
\ No newline at end of file