diff options
author | acsfer <carlos@reendex.com> | 2021-04-21 10:11:06 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2021-08-20 10:33:03 +0200 |
commit | 3ee82e440546b97aebb1887cc46c1fb0f39582d1 (patch) | |
tree | 5c4948abbefa77322a07fefb30a32dacde8355df /.htaccess | |
parent | 2303eebcc8b24c745aa866dd6299459532201da8 (diff) | |
download | nextcloud-server-3ee82e440546b97aebb1887cc46c1fb0f39582d1.tar.gz nextcloud-server-3ee82e440546b97aebb1887cc46c1fb0f39582d1.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 |