Hi,
short post as reminder how to enable Server Side Includes on a virtual directory.
mod_include
must be enabled. MimeType for text/html must associated with .shtml file extension. Sample config for SSI looks like these:
<Directory "D:/user/www/virtualdirectory/"> Options Indexes FollowSymLinks MultiViews ExecCGI Includes AllowOverride All Order allow ,deny Allow from all Require all granted AddType text/html .shtml AddOutputFilter INCLUDES .shtml </Directory>
See you Michael