X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=.htaccess;h=b238854c7929d911bb7dc1b5093e29dfbee7cd46;hb=62f5a7581380da7885025498de10e9a20c45b358;hp=66ef8f69ce39e127dc266c9ab3727c4b8be4f9fa;hpb=fc11ab2f290a3712b766d78fdbcd354625a35d0a;p=github%2Fshaarli%2FShaarli.git diff --git a/.htaccess b/.htaccess index 66ef8f69..b238854c 100644 --- a/.htaccess +++ b/.htaccess @@ -1,4 +1,23 @@ +# 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] + + + Require all granted + + + Require all denied +