baikal/Core/Resources/System/htaccess-documentroot
Jérôme Schneider 715966edbb * Automatically selects MySQL if SQLite is not available
* Improved packaging scripts
* Corrected magic_quotes_gpc in .htaccess; this is now handled by Flakes via PHP code
* BASEURI problems corrected


Former-commit-id: afb10b8ae3
2012-11-07 16:26:38 +01:00

16 lines
No EOL
462 B
Text

# Disabling cache management
# 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
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
</IfModule>
<IfModule mod_expires.c>
ExpiresActive Off
</IfModule>