SSI and SHTML

From KOP KB
Revision as of 17:02, 27 July 2016 by Agoodyer (talk | contribs) (Created page with " == Enabling SSI (Server Side Includes) on Unix == When you are working with a website with .shtml files and some elements are not working, you will need to make sure SSI is...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Enabling SSI (Server Side Includes) on Unix

When you are working with a website with .shtml files and some elements are not working, you will need to make sure SSI is enabled on the account. Open the .htaccess file and look for the following:

Options -Indexes

And change it to:

Options +Indexes

This will turn on SSI parsing and .shtml files should start working. If the original line is not present (or there is no .htaccess) simply upload a .htaccess file with the Options +Indexes line.