X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=.htaccess;h=5acd708e76c6480ef9dedb71ab6ff9c1509bad90;hb=refs%2Fheads%2Fgitolite_local%2Fldap;hp=19dd72a805e7b3bd170c87aabb25ad4764ca179a;hpb=cabf1b6becbc0143f6a9d0d6846fd948c06b5a64;p=github%2Fshaarli%2FShaarli.git diff --git a/.htaccess b/.htaccess index 19dd72a8..5acd708e 100644 --- a/.htaccess +++ b/.htaccess @@ -6,7 +6,56 @@ RewriteEngine On # Prevent accessing subdirectories not managed by SCM RewriteRule ^(.git|doxygen|vendor) - [F] +RewriteCond %{REQUEST_URI}::$1 ^(/.+)/(.*)::\2$ +RewriteRule ^(.*) - [E=BASE:%1] + +RewriteCond %{ENV:REDIRECT_BASE} (.+) +RewriteRule .* - [E=BASE:%1] + +# Forward the "Authorization" HTTP header +RewriteCond %{HTTP:Authorization} ^(.*) +RewriteRule .* - [e=HTTP_AUTHORIZATION:%1] + +RewriteCond %{REQUEST_FILENAME} !-f +RewriteCond %{REQUEST_FILENAME} !-d +RewriteRule ^((?!api/)[^/]*)/?(.*)$ $2?%{QUERY_STRING} [E=USERSPACE:$1] + +RewriteCond %{ENV:REDIRECT_USERSPACE} (.+) +RewriteRule .* - [E=USERSPACE:%1] + # REST API RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^ index.php [QSA,L] + + + + = 2.4> + Require all granted + + + Allow from all + Deny from none + + + + + Require all granted + + + + + + = 2.4> + Require all denied + + + Allow from none + Deny from all + + + + + Require all denied + +