-
Notifications
You must be signed in to change notification settings - Fork 7
/
.htaccess
58 lines (57 loc) · 1.11 KB
/
.htaccess
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# Apache 2.2
<IfModule !mod_authz_core.c>
Order deny,allow
Deny from all
<Files "cron.php">
Allow from all
</Files>
<Files "toolbox.php">
Allow from all
</Files>
<Files "export.php">
Allow from all
</Files>
<Files "*.css">
Allow from all
</Files>
<Files "*.js">
Allow from all
</Files>
<Files "*.png">
Allow from all
</Files>
<Files "*.woff">
Allow from all
</Files>
<Files "*.woff2">
Allow from all
</Files>
</IfModule>
# Apache 2.4
<IfModule mod_authz_core.c>
Require all denied
<Files "cron.php">
Require all granted
</Files>
<Files "toolbox.php">
Require all granted
</Files>
<Files "export.php">
Require all granted
</Files>
<Files "*.css">
Require all granted
</Files>
<Files "*.js">
Require all granted
</Files>
<Files "*.png">
Require all granted
</Files>
<Files "*.woff">
Require all granted
</Files>
<Files "*.woff2">
Require all granted
</Files>
</IfModule>