Yes we do. SSI (Server Side Includes) are tags that are placed in HTML pages, and evaluated on the server while the pages are being served. They allow our customers to add dynamically generated content to an existing HTML page, without having to generate the entire page via a CGIprogram, or other dynamic technology.
Pages that use Server Side Includes should have filenames which end with the suffix .shtml to be recognised by the server as such.
How to enable
mod_include is installed by default but needs to be configured. Add the following to your .htaccess:
Options +Includes
AddType text/html .shtml
AddOutputFilter INCLUDES .shtml