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:
1 2 3 4 5 6 7 8 9 | <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