blob: e46a5b1069508e612af80c30c2d01d631650315b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#
# mod_php - PHP Hypertext Preprocessor module
#
# Load the PHP module:
LoadModule php5_module libexec/apache/libphp5.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
|