2018-01-20 16:20:53 +01:00
|
|
|
# Disable directory listing
|
|
|
|
Options -Indexes
|
|
|
|
|
2016-12-15 10:13:00 +01:00
|
|
|
RewriteEngine On
|
2018-01-20 16:20:53 +01:00
|
|
|
|
|
|
|
# Prevent accessing subdirectories not managed by SCM
|
|
|
|
RewriteRule ^(.git|doxygen|vendor) - [F]
|
|
|
|
|
2018-03-22 22:23:41 +01:00
|
|
|
# Forward the "Authorization" HTTP header
|
|
|
|
RewriteCond %{HTTP:Authorization} ^(.*)
|
|
|
|
RewriteRule .* - [e=HTTP_AUTHORIZATION:%1]
|
|
|
|
|
2018-01-20 16:20:53 +01:00
|
|
|
# REST API
|
2016-12-15 10:13:00 +01:00
|
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
|
|
RewriteRule ^ index.php [QSA,L]
|