baikal/html/.htaccess

16 lines
462 B
ApacheConf
Raw Normal View History

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)
# 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>
RewriteEngine On
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
2012-04-25 14:09:22 +02:00
</IfModule>
<IfModule mod_expires.c>
ExpiresActive Off
</IfModule>