Đoàn Trần Công Danh 30cd82dcfa php8.2: for apache config
2024-01-04 09:54:05 +07:00

14 lines
316 B
ApacheConf

# Required modules: dir_module, php_module
<IfModule dir_module>
<IfModule php_module>
DirectoryIndex index.php index.html
<FilesMatch "\.php$">
SetHandler application/x-httpd-php
</FilesMatch>
<FilesMatch "\.phps$">
SetHandler application/x-httpd-php-source
</FilesMatch>
</IfModule>
</IfModule>