Forum Moderators: phranque
If you add
AddHandler server-parsed .html
The problem with this approach is that *all* .html files will be parsed; This increases your server load somewhat, although it's not such a problem with modern, fast machines. However, if only a few of your .html files will contain SSI, you might consider using XBitHack (see mod_includes) which uses the files' "eXecute" bit to determine whether to parse .html files for SSI.
Another alternative if only specific .html files are to be parsed for SSI is to enclose the above AddHandler directive in a <Files>, <Directory>, or <Location> container (or the "Match" variants of these containers) so that SSI parsing is only enabled under limited circumstances.
Jim