]> git.mxchange.org Git - friendica-addons.git/blob - dav/SabreDAV/examples/webserver/apache2_htaccess.conf
c5f29ba80e881a6e6820199d136576f107997d9c
[friendica-addons.git] / dav / SabreDAV / examples / webserver / apache2_htaccess.conf
1 RewriteEngine On
2 # This makes every request go to server.php
3 RewriteRule (.*) server.php [L]
4
5 # Output buffering needs to be off, to prevent high memory usage
6 php_flag output_buffering off
7
8 # This is also to prevent high memory usage
9 php_flag always_populate_raw_post_data off
10
11 # This is almost a given, but magic quotes is *still* on on some
12 # linux distributions
13 php_flag magic_quotes_gpc off
14
15 # SabreDAV is not compatible with mbstring function overloading
16 php_flag mbstring.func_overload off