]>
Commit | Line | Data |
---|---|---|
cabf1b6b V |
1 | # Disable directory listing |
2 | Options -Indexes | |
3 | ||
18e67967 | 4 | RewriteEngine On |
cabf1b6b V |
5 | |
6 | # Prevent accessing subdirectories not managed by SCM | |
7 | RewriteRule ^(.git|doxygen|vendor) - [F] | |
8 | ||
460cf03d V |
9 | # Forward the "Authorization" HTTP header |
10 | RewriteCond %{HTTP:Authorization} ^(.*) | |
11 | RewriteRule .* - [e=HTTP_AUTHORIZATION:%1] | |
12 | ||
cabf1b6b | 13 | # REST API |
18e67967 A |
14 | RewriteCond %{REQUEST_FILENAME} !-f |
15 | RewriteCond %{REQUEST_FILENAME} !-d | |
16 | RewriteRule ^ index.php [QSA,L] |