[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: [cobalt-users] SSI with .htm and .html



>
> I tried adding the Options directive and now I get the error:
> "Options not
> allowed here"
>
> It must be something turned off globally (perhaps in srm.conf) to prevent
> users from overriding the global server options using .htaccess.
> (BTW it's
> a Raq4r).
>
> I'll keep digging...
>
> Brian
>
Another option (but may not be your preferred choice) is to edit the
httpd.conf file manually.
(unless of course the GUI changes things back when you add additional
sites - [anyone?])

Within the  <VirtualHost ###.###.###.###> for the site, change these 2
lines:

AddHandler server-parsed .shtml
AddType    text/html     .shtml

to read

AddHandler server-parsed .shtml .html .htm
AddType    text/html     .shtml .html .htm


Patrick