diff options
author | steckbrief <steckbrief@chefmail.de> | 2016-01-04 12:19:02 +0100 |
---|---|---|
committer | steckbrief <steckbrief@chefmail.de> | 2016-01-04 12:19:02 +0100 |
commit | d5df8c4b361d8e06b01319d906ce159a5cdd9526 (patch) | |
tree | e6a87379f9d0648ba8b563d4528859689978ddb8 /.htaccess | |
parent | bd18639424b041120cdb4305fcc90feae699ea9a (diff) |
htaccess to rewrite URLs for put request added
Diffstat (limited to '.htaccess')
-rw-r--r-- | .htaccess | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.htaccess b/.htaccess new file mode 100644 index 0000000..6655c30 --- /dev/null +++ b/.htaccess @@ -0,0 +1,3 @@ +RewriteEngine on +RewriteCond %{REQUEST_METHOD} =PUT +RewriteRule ^(.*)$ index.php?uri=$1 [L,QSA] |