aboutsummaryrefslogtreecommitdiffhomepage
path: root/.htaccess
diff options
context:
space:
mode:
authorArthurHoaro <arthur@hoa.ro>2018-07-10 18:06:26 +0200
committerGitHub <noreply@github.com>2018-07-10 18:06:26 +0200
commitc2c2338f9adecf971d01d7abcd09bab6275a9706 (patch)
tree9c8fe4d6c1ca1d5667b6bce786d872471322fac1 /.htaccess
parentedb4a4d9c9fbc01d67ee8d095fe26648714e2285 (diff)
parent6410bf96707e381685b7dafbefcccd83ea762934 (diff)
downloadShaarli-c2c2338f9adecf971d01d7abcd09bab6275a9706.tar.gz
Shaarli-c2c2338f9adecf971d01d7abcd09bab6275a9706.tar.zst
Shaarli-c2c2338f9adecf971d01d7abcd09bab6275a9706.zip
Merge pull request #1141 from ArthurHoaro/api/tags
Implements Tags endpoints for Shaarli's REST API
Diffstat (limited to '.htaccess')
-rw-r--r--.htaccess7
1 files changed, 7 insertions, 0 deletions
diff --git a/.htaccess b/.htaccess
index 7ba4744b..b238854c 100644
--- a/.htaccess
+++ b/.htaccess
@@ -14,3 +14,10 @@ RewriteRule .* - [e=HTTP_AUTHORIZATION:%1]
14RewriteCond %{REQUEST_FILENAME} !-f 14RewriteCond %{REQUEST_FILENAME} !-f
15RewriteCond %{REQUEST_FILENAME} !-d 15RewriteCond %{REQUEST_FILENAME} !-d
16RewriteRule ^ index.php [QSA,L] 16RewriteRule ^ index.php [QSA,L]
17
18<Limit GET POST PUT DELETE OPTIONS>
19 Require all granted
20</Limit>
21<LimitExcept GET POST PUT DELETE OPTIONS>
22 Require all denied
23</LimitExcept>