b74969
#
b74969
# Cause the PHP interpreter to handle files with a .php extension.
b74969
#
b74969
<FilesMatch \.php$>
b74969
    SetHandler application/x-httpd-php
b74969
</FilesMatch>
b74969
b74969
#
b74969
# Allow php to handle Multiviews
b74969
#
b74969
AddType text/html .php
b74969
b74969
#
b74969
# Add index.php to the list of files that will be served as directory
b74969
# indexes.
b74969
#
b74969
DirectoryIndex index.php
b74969
b74969
#
b74969
# Uncomment the following lines to allow PHP to pretty-print .phps
b74969
# files as PHP source code:
b74969
#
b74969
#<FilesMatch \.phps$>
b74969
#    SetHandler application/x-httpd-php-source
b74969
#</FilesMatch>
b74969
b74969
#
b74969
# Apache specific PHP configuration options
b74969
# those can be override in each configured vhost
b74969
#
b74969
php_value session.save_handler "files"
b74969
php_value session.save_path    "/var/lib/php/session"