I just did a quick search on the apache site for "htaccess addhandler" so there may be better pages than those.
msr986
9:30 pm on Nov 23, 2002 (gmt 0)
Another method is to use the XBitHack directive in the .htaccess file. Then you can selectively make an html file run SSI by setting it's permissions to 755.
Xbithack is deffinitely a better way to go if you aren't in fact using SSI on every single page, since it saves the server from having to process every page served for SSI directives. Of course, if you are using it on every page, there's no harm in just using addhandler.
jdMorgan
10:43 pm on Nov 23, 2002 (gmt 0)
Using "XBitHack Full" also allows you to keep your SSI- and Script-containing html pages cacheable if you set both the Owner-eXecute and Group-eXecute bits. This tells Apache to return the last-modified date of the including html page as the last-modified date for the whole page-plus-included-files bundle, thus making it cacheable.
Jim
mack
10:47 pm on Nov 23, 2002 (gmt 0)
WOW this is a lot more technichal then I though. I sure have some reading to do.