Skip to content

Commit 185e671

Browse files
committedJan 16, 2023
add new htaccess file to adm_my_files
1 parent 6b7c009 commit 185e671

File tree

1 file changed

+18
-2
lines changed

1 file changed

+18
-2
lines changed
 

‎adm_my_files/.htaccess

+18-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,18 @@
1-
Order deny,allow
2-
Deny from all
1+
<IfModule mod_version.c>
2+
<IfVersion < 2.4>
3+
Order Deny,Allow
4+
Deny from All
5+
</IfVersion>
6+
<IfVersion >= 2.4>
7+
Require all denied
8+
</IfVersion>
9+
</IfModule>
10+
<IfModule !mod_version.c>
11+
<IfModule !mod_authz_core.c>
12+
Order Allow,Deny
13+
Deny from All
14+
</IfModule>
15+
<IfModule mod_authz_core.c>
16+
Require all denied
17+
</IfModule>
18+
</IfModule>

0 commit comments

Comments
 (0)
Please sign in to comment.