aboutsummaryrefslogblamecommitdiffhomepage
path: root/.htaccess
blob: 7ba4744b262af9c1ca97f617c4bb60d9510808e9 (plain) (tree)
1
2
3
4
5
6
7
8


                           
                



                                                     



                                          
          


                                   
# Disable directory listing
Options -Indexes

RewriteEngine On

# Prevent accessing subdirectories not managed by SCM
RewriteRule ^(.git|doxygen|vendor) - [F]

# Forward the "Authorization" HTTP header
RewriteCond %{HTTP:Authorization} ^(.*)
RewriteRule .* - [e=HTTP_AUTHORIZATION:%1]

# REST API
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^ index.php [QSA,L]