]> git.immae.eu Git - github/shaarli/Shaarli.git/blame - .htaccess
Merge pull request #1234 from virtualtam/lint
[github/shaarli/Shaarli.git] / .htaccess
CommitLineData
cabf1b6b
V
1# Disable directory listing
2Options -Indexes
3
18e67967 4RewriteEngine On
cabf1b6b
V
5
6# Prevent accessing subdirectories not managed by SCM
7RewriteRule ^(.git|doxygen|vendor) - [F]
8
460cf03d
V
9# Forward the "Authorization" HTTP header
10RewriteCond %{HTTP:Authorization} ^(.*)
11RewriteRule .* - [e=HTTP_AUTHORIZATION:%1]
12
cabf1b6b 13# REST API
18e67967
A
14RewriteCond %{REQUEST_FILENAME} !-f
15RewriteCond %{REQUEST_FILENAME} !-d
16RewriteRule ^ index.php [QSA,L]
6410bf96
A
17
18<Limit GET POST PUT DELETE OPTIONS>
8aca613b
A
19 <IfModule version_module>
20 <IfVersion >= 2.4>
21 Require all granted
22 </IfVersion>
23 <IfVersion < 2.4>
24 Allow from all
25 Deny from none
26 </IfVersion>
27 </IfModule>
28
29 <IfModule !version_module>
6410bf96 30 Require all granted
8aca613b 31 </IfModule>
6410bf96 32</Limit>
8aca613b 33
6410bf96 34<LimitExcept GET POST PUT DELETE OPTIONS>
8aca613b
A
35 <IfModule version_module>
36 <IfVersion >= 2.4>
37 Require all denied
38 </IfVersion>
39 <IfVersion < 2.4>
40 Allow from none
41 Deny from all
42 </IfVersion>
43 </IfModule>
44
45 <IfModule !version_module>
6410bf96 46 Require all denied
8aca613b 47 </IfModule>
6410bf96 48</LimitExcept>