aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorroot <root@fucktheforce.de>2016-08-22 12:28:20 +0200
committerroot <root@fucktheforce.de>2016-08-22 12:28:20 +0200
commitb37c5b525fc2270fc7fecf774462b398bfff8a1b (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]