I got it working but, I don't know why. I had to add the following to the apache2.conf:
Code:
<Directory /var/www/*>
Options +Includes
AddType text/html .shtml
AddOutputFilter INCLUDES .shtml
</Directory>
Why didn't the following existing config work:
Code:
# To use server-parsed HTML files
#
<FilesMatch "\.shtml(\..+)?$">
SetOutputFilter INCLUDES
</FilesMatch>
AddType text/html .shtml
AddOutputFilter INCLUDES .shtml
I appreciate your help anyway.
Thanks!
Joey