]> git.immae.eu Git - github/shaarli/Shaarli.git/blame - .htaccess
**General rewording, proof-reading, deduplication, shortening, reordering, simplifica...
[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 9# Forward the "Authorization" HTTP header
91a21c27 10# fixes JWT token not correctly forwarded on some Apache/FastCGI setups
460cf03d
V
11RewriteCond %{HTTP:Authorization} ^(.*)
12RewriteRule .* - [e=HTTP_AUTHORIZATION:%1]
13
cabf1b6b 14# REST API
18e67967
A
15RewriteCond %{REQUEST_FILENAME} !-f
16RewriteCond %{REQUEST_FILENAME} !-d
17RewriteRule ^ index.php [QSA,L]
6410bf96
A
18
19<Limit GET POST PUT DELETE OPTIONS>
8aca613b
A
20 <IfModule version_module>
21 <IfVersion >= 2.4>
22 Require all granted
23 </IfVersion>
24 <IfVersion < 2.4>
25 Allow from all
26 Deny from none
27 </IfVersion>
28 </IfModule>
29
30 <IfModule !version_module>
6410bf96 31 Require all granted
8aca613b 32 </IfModule>
6410bf96 33</Limit>
8aca613b 34
6410bf96 35<LimitExcept GET POST PUT DELETE OPTIONS>
8aca613b
A
36 <IfModule version_module>
37 <IfVersion >= 2.4>
38 Require all denied
39 </IfVersion>
40 <IfVersion < 2.4>
41 Allow from none
42 Deny from all
43 </IfVersion>
44 </IfModule>
45
46 <IfModule !version_module>
6410bf96 47 Require all denied
8aca613b 48 </IfModule>
6410bf96 49</LimitExcept>