forked from Th3-822/rapidleech
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.htaccess
63 lines (48 loc) · 950 Bytes
/
.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
59
60
61
62
63
order deny,allow
<files ~ "\.(?i:s?php.*|cgi|p[ly]|sh|asp|[dsp]?html?)$">
deny from all
</files>
<files index.php>
allow from all
</files>
<files ff.php>
allow from all
</files>
<files info.php>
allow from all
</files>
#Uncomment the 3 lines below, ONLY when you want to run the checker.php!
#<files checker.php>
allow from all
#</files>
<files ~ "^deny.php">
allow from all
</files>
<files notes.php>
allow from all
</files>
<files audl.php>
allow from all
</files>
<files upload.php>
allow from all
</files>
<files auul.php>
allow from all
</files>
<files ajax.php>
allow from all
</files>
<files ff.php>
allow from all
</files>
<files ~ "^\.">
deny from all
</files>
#CGI Auth Fix
<IfModule mod_rewrite.c>
Options +SymLinksIfOwnerMatch
RewriteEngine on
RewriteCond %{HTTP:Authorization} !^$
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
</IfModule>