Browse Source

Fix module name for PHP8+

tags/v23.0.0beta1
acsfer 3 years ago
parent
commit
3ee82e4405
No account linked to committer's email address
1 changed files with 3 additions and 1 deletions
  1. 3
    1
      .htaccess

+ 3
- 1
.htaccess View File

@@ -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

Loading…
Cancel
Save