Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Appelman <icewind1991@gmail.com>2012-01-03 07:55:19 +0400
committerRobin Appelman <icewind1991@gmail.com>2012-01-03 07:55:57 +0400
commit4c8f17ad4747592cc01525c663de32962552cf18 (patch)
tree00b162c12683e99f81f946d6c44d50b6f47de55c /.htaccess
parentb8cffbc0eec099e0fb7ffbb53e7fc1dc5bbc4035 (diff)
don't try to use mod_rewrite when it isn't enabled
having a broken web/card/caldav is much better as having no ownCloud at all :)
Diffstat (limited to '.htaccess')
-rw-r--r--.htaccess2
1 files changed, 2 insertions, 0 deletions
diff --git a/.htaccess b/.htaccess
index b181f8b8452..86a2de6b946 100644
--- a/.htaccess
+++ b/.htaccess
@@ -5,6 +5,8 @@ php_value post_max_size 512M
php_value memory_limit 512M
SetEnv htaccessWorking true
</IfModule>
+<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule .* - [env=HTTP_AUTHORIZATION:%{HTTP:Authorization},last]
+</IfModule>
Options -Indexes