apache.conf 318 B

1234567891011121314
  1. # Required modules: dir_module, php7_module
  2. <IfModule dir_module>
  3. <IfModule php7_module>
  4. DirectoryIndex index.php index.html
  5. <FilesMatch "\.php$">
  6. SetHandler application/x-httpd-php
  7. </FilesMatch>
  8. <FilesMatch "\.phps$">
  9. SetHandler application/x-httpd-php-source
  10. </FilesMatch>
  11. </IfModule>
  12. </IfModule>