]> git.immae.eu Git - github/shaarli/Shaarli.git/blob - .htaccess
Merge pull request #1093 from ArthurHoaro/feature/theme-translation
[github/shaarli/Shaarli.git] / .htaccess
1 # Disable directory listing
2 Options -Indexes
3
4 RewriteEngine On
5
6 # Prevent accessing subdirectories not managed by SCM
7 RewriteRule ^(.git|doxygen|vendor) - [F]
8
9 # Forward the "Authorization" HTTP header
10 RewriteCond %{HTTP:Authorization} ^(.*)
11 RewriteRule .* - [e=HTTP_AUTHORIZATION:%1]
12
13 # REST API
14 RewriteCond %{REQUEST_FILENAME} !-f
15 RewriteCond %{REQUEST_FILENAME} !-d
16 RewriteRule ^ index.php [QSA,L]