apache.conf 272 B

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