blob: 7adf6e0b158f6cf7bda58858d0729b5ee2270923 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#
# mod_php - PHP Hypertext Preprocessor module
#
# Load the PHP module:
LoadModule php4_module libexec/apache/libphp4.so
# Tell Apache to feed all *.php files through the PHP module:
AddType application/x-httpd-php .php
# This will display PHP files in colored syntax form. Use with caution.
#AddType application/x-httpd-php-source .phps
|