Steps to enable shtml files on server

kumkumsharma

Administrator
Staff member
If you want to use Server Side Includes (SSI) files on server then you can enable this feature on server.

You have to enable mod_include as by default its already installed on server. For this you have to add below code in your .htaccess file:

Code:
Options +Includes
AddType text/html .shtml
AddOutputFilter INCLUDES .shtml
 
Top