2009-08-26 17:00:38 +02:00
|
|
|
#
|
|
|
|
# mod_php - PHP Hypertext Preprocessor module
|
|
|
|
#
|
|
|
|
|
|
|
|
# Load the PHP module:
|
2018-05-28 21:12:29 +02:00
|
|
|
LoadModule php7_module lib/httpd/modules/libphp7.so
|
2009-08-26 17:00:38 +02:00
|
|
|
|
|
|
|
# Tell Apache to feed all *.php files through PHP. If you'd like to
|
|
|
|
# parse PHP embedded in files with different extensions, comment out
|
2010-05-19 10:58:23 +02:00
|
|
|
# these lines and see the example below.
|
|
|
|
<FilesMatch \.php$>
|
|
|
|
SetHandler application/x-httpd-php
|
|
|
|
</FilesMatch>
|
2009-08-26 17:00:38 +02:00
|
|
|
|
|
|
|
# Tell Apache to feed all *.php, *.html, and *.htm files through
|
|
|
|
# the PHP module. Add or subtract extensions here as desired. Please
|
|
|
|
# note that running pages through PHP for no reason can be both slow
|
|
|
|
# and insecure, so be sure to know what you're doing. It's a convenient
|
|
|
|
# shortcut, but probably isn't suitible for high-traffic sites if you
|
|
|
|
# write any of your pages in straight HTML.
|
2010-05-19 10:58:23 +02:00
|
|
|
#<FilesMatch "\.(php|html|htm)$">
|
|
|
|
# SetHandler application/x-httpd-php
|
|
|
|
#</FilesMatch>
|
2009-08-26 17:00:38 +02:00
|
|
|
|
|
|
|
# This will display PHP files in colored syntax form. Use with caution.
|
2010-05-19 10:58:23 +02:00
|
|
|
#<FilesMatch "\.phps$">
|
|
|
|
# SetHandler application/x-httpd-php-source
|
|
|
|
#</FilesMatch>
|
|
|
|
|