diff options
author | steckbrief <steckbrief@chefmail.de> | 2016-08-20 21:29:05 +0200 |
---|---|---|
committer | steckbrief <steckbrief@chefmail.de> | 2016-08-20 21:29:05 +0200 |
commit | fa17f36311f3012053b0413b3618ad97cb4c9bba (patch) | |
tree | 2753c68af4bdb60978ce145e8eb640b02becec88 /storage-backend/.htaccess | |
parent | 31da8eb9ef38af5c9cc05c76342a34fa2fb8b97c (diff) |
Feature added: delete a file previously uploaded using the httpupload
Diffstat (limited to '')
-rw-r--r-- | storage-backend/.htaccess | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/storage-backend/.htaccess b/storage-backend/.htaccess index 6655c30..6848e98 100644 --- a/storage-backend/.htaccess +++ b/storage-backend/.htaccess @@ -1,3 +1,3 @@ RewriteEngine on -RewriteCond %{REQUEST_METHOD} =PUT +RewriteCond %{REQUEST_METHOD} !^(DELETE|PUT) RewriteRule ^(.*)$ index.php?uri=$1 [L,QSA] |