]> git.immae.eu Git - github/shaarli/Shaarli.git/blame_incremental - .htaccess
Upgrade composer - web-thumbnailer v1.3.0
[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
10RewriteCond %{HTTP:Authorization} ^(.*)
11RewriteRule .* - [e=HTTP_AUTHORIZATION:%1]
12
13# REST API
14RewriteCond %{REQUEST_FILENAME} !-f
15RewriteCond %{REQUEST_FILENAME} !-d
16RewriteRule ^ index.php [QSA,L]
17
18<Limit GET POST PUT DELETE OPTIONS>
19 Require all granted
20</Limit>
21<LimitExcept GET POST PUT DELETE OPTIONS>
22 Require all denied
23</LimitExcept>