blob: 2707a2be9eaf9587c7cb460983494fcb2fb83dd1 (
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 lib/httpd/modules/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
|