diff options
author | acsfer <carlos@reendex.com> | 2021-04-21 10:11:06 +0200 |
---|---|---|
committer | MichaIng <micha@dietpi.com> | 2021-09-21 17:14:50 +0200 |
commit | fe89d00fd5eaed5b6f55479dc59276424e4285f7 (patch) | |
tree | 57c058b015a9119c48bf97624b88a05f660bdbb1 /.htaccess | |
parent | cb170bacf313b0ae5e1c4ae8fd75778c750f3417 (diff) | |
download | nextcloud-server-fe89d00fd5eaed5b6f55479dc59276424e4285f7.tar.gz nextcloud-server-fe89d00fd5eaed5b6f55479dc59276424e4285f7.zip |
Fix module name for PHP8+
Diffstat (limited to '.htaccess')
-rw-r--r-- | .htaccess | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.htaccess b/.htaccess index 46e83b17e1f..4986f7d380f 100644 --- a/.htaccess +++ b/.htaccess @@ -53,6 +53,7 @@ </FilesMatch> </IfModule> +# PHP 7.x <IfModule mod_php7.c> php_value mbstring.func_overload 0 php_value default_charset 'UTF-8' @@ -62,7 +63,8 @@ </IfModule> </IfModule> -<IfModule mod_php8.c> +# PHP 8+ +<IfModule mod_php.c> php_value mbstring.func_overload 0 php_value default_charset 'UTF-8' php_value output_buffering 0 |