I would like to use Server Side Includes (SSI) files on my server. How can I enable this feature in Apache?
Procedure
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
Comments
0 comments
Article is closed for comments.