aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorroot <root@fucktheforce.de>2016-08-22 12:28:20 +0200
committerlookshe <github@lookshe.org>2016-08-22 12:32:57 +0200
commitfe33066a1b84b80213fe17284edb18abe430837d (patch)
treef0323e7fae8c52deea942c51200d102da8cdc6eb
parent3e797e3fe1ea662b308ec2797172eed65a4ce532 (diff)
Modified .htaccess to determine request method correctly
-rw-r--r--storage-backend/.htaccess2
1 files changed, 1 insertions, 1 deletions
diff --git a/storage-backend/.htaccess b/storage-backend/.htaccess
index 6848e98..5862aac 100644
--- a/storage-backend/.htaccess
+++ b/storage-backend/.htaccess
@@ -1,3 +1,3 @@
RewriteEngine on
-RewriteCond %{REQUEST_METHOD} !^(DELETE|PUT)
+RewriteCond %{REQUEST_METHOD} (DELETE|PUT)
RewriteRule ^(.*)$ index.php?uri=$1 [L,QSA]