X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=.htaccess;h=7ba4744b262af9c1ca97f617c4bb60d9510808e9;hb=508397a88e7ca2340f09da735eda74e6a111176a;hp=66ef8f69ce39e127dc266c9ab3727c4b8be4f9fa;hpb=18e6796726d73d7dc90ecdd16c181493941f5487;p=github%2Fshaarli%2FShaarli.git diff --git a/.htaccess b/.htaccess index 66ef8f69..7ba4744b 100644 --- a/.htaccess +++ b/.htaccess @@ -1,4 +1,16 @@ +# 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]