2012-07-06 00:15:10 +02:00
|
|
|
# Disabling cache management
|
2012-04-25 14:09:22 +02:00
|
|
|
# that could cause problems with DAV requests
|
|
|
|
# Useful only for Apache servers, with AllowOverride All
|
|
|
|
# (ie, .htaccess files enabled)
|
|
|
|
|
2012-05-30 22:40:02 +02:00
|
|
|
# Allow HTTP headers with Apache/FastCGI
|
|
|
|
# See http://code.google.com/p/sabredav/wiki/Authentication#Apache_+_(Fast)CGI
|
|
|
|
|
2012-04-25 14:09:22 +02:00
|
|
|
<IfModule mod_rewrite.c>
|
2012-05-30 22:40:02 +02:00
|
|
|
RewriteEngine On
|
|
|
|
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
|
2012-04-25 14:09:22 +02:00
|
|
|
</IfModule>
|
|
|
|
|
|
|
|
<IfModule mod_expires.c>
|
|
|
|
ExpiresActive Off
|
2017-04-28 16:11:55 +02:00
|
|
|
</IfModule>
|
|
|
|
|
|
|
|
<IfModule mod_alias.c>
|
2019-04-18 23:21:46 +02:00
|
|
|
Redirect 308 /.well-known/caldav /dav.php
|
|
|
|
Redirect 308 /.well-known/carddav /dav.php
|
2017-04-28 16:11:55 +02:00
|
|
|
</IfModule>
|