Files
medicalalert-web-reloaded/wp/wp-content/plugins/wordfence/lib/.htaccess
Rachit Bhargava 5d0f0734d8 first commit
2023-07-21 17:12:10 -04:00

16 lines
354 B
ApacheConf

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_URI} \.php$
RewriteRule .* - [F,L,NC]
</IfModule>
<IfModule !mod_rewrite.c>
<FilesMatch "\.php$">
<IfModule mod_authz_core.c>
Require all denied
</IfModule>
<IfModule !mod_authz_core.c>
Order deny,allow
Deny from all
</IfModule>
</FilesMatch>
</IfModule>