2012-07-05 18:15:10 -04:00
|
|
|
# Disabling cache management
|
2012-04-25 08:09:22 -04:00
|
|
|
# that could cause problems with DAV requests
|
|
|
|
# Useful only for Apache servers, with AllowOverride All
|
|
|
|
# (ie, .htaccess files enabled)
|
|
|
|
|
2012-05-30 16:40:02 -04:00
|
|
|
# Allow HTTP headers with Apache/FastCGI
|
|
|
|
# See http://code.google.com/p/sabredav/wiki/Authentication#Apache_+_(Fast)CGI
|
|
|
|
|
2012-04-25 08:09:22 -04:00
|
|
|
<IfModule mod_rewrite.c>
|
2012-05-30 16:40:02 -04:00
|
|
|
RewriteEngine On
|
|
|
|
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
|
2012-04-25 08:09:22 -04:00
|
|
|
</IfModule>
|
|
|
|
|
|
|
|
<IfModule mod_expires.c>
|
|
|
|
ExpiresActive Off
|
2012-05-30 16:40:02 -04:00
|
|
|
</IfModule>
|
2012-08-20 12:52:37 -04:00
|
|
|
|
|
|
|
# Disabling PHP Magic quotes, we handle this ourself
|
|
|
|
php_flag magic_quotes_gpc Off
|