Forum Moderators: phranque
Those don't seem to work on linux/apache. Is there alternative functionality that uses slightly different syntax?
Thanks.
You can do this two ways, either by using AddHandler in Apache mod_mime to enable all files of a specific type (file extension) to be parsed for SSI, or by using XBitHack in mod_include, and setting the Owner Execute bit of the files you want the server to parse.
Example AddHandler directive:
AddHandler server-parsed .html See the Apache documentation of those two modules for more info.
Jim