]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-content/plugins/akismet/.htaccess
Wordpress 4.5.3
[autoinstalls/wordpress.git] / wp-content / plugins / akismet / .htaccess
index cfad4685aafcf177c3b335434d96eb1e771fd262..49d72d71d2507ea5830039e016e438258acb8e36 100644 (file)
@@ -1,11 +1,34 @@
-Order Deny,Allow
-Deny from all
+# Only allow direct access to specific Web-available files.
 
-<FilesMatch "^akismet\.(css|js)$">
-       Allow from all
+# 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\.js|akismet\.js|akismet\.css)$">
+       <IfModule !mod_authz_core.c>
+               Allow from all
+       </IfModule>
+       
+       <IfModule mod_authz_core.c>
+               Require all granted
+       </IfModule>
 </FilesMatch>
 
-#allow access to any image
-<FilesMatch "^(.+)\.(png|gif)$">
-       Allow from all
+# Akismet images
+<FilesMatch "^logo-full-2x\.png$">
+       <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