]> git.immae.eu Git - github/shaarli/Shaarli.git/blame_incremental - .htaccess
Merge pull request #1572 from ArthurHoaro/feature/php8
[github/shaarli/Shaarli.git] / .htaccess
... / ...
CommitLineData
1# Disable directory listing
2Options -Indexes
3
4RewriteEngine On
5
6# Prevent accessing subdirectories not managed by SCM
7RewriteRule ^(.git|doxygen|vendor) - [F]
8
9# Forward the "Authorization" HTTP header
10# fixes JWT token not correctly forwarded on some Apache/FastCGI setups
11RewriteCond %{HTTP:Authorization} ^(.*)
12RewriteRule .* - [e=HTTP_AUTHORIZATION:%1]
13
14# REST API
15RewriteCond %{REQUEST_FILENAME} !-f
16RewriteCond %{REQUEST_FILENAME} !-d
17RewriteRule ^ index.php [QSA,L]
18
19<LimitExcept GET POST PUT DELETE PATCH OPTIONS>
20 <IfModule version_module>
21 <IfVersion >= 2.4>
22 Require all denied
23 </IfVersion>
24 <IfVersion < 2.4>
25 Allow from none
26 Deny from all
27 </IfVersion>
28 </IfModule>
29
30 <IfModule !version_module>
31 Require all denied
32 </IfModule>
33</LimitExcept>