[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
RE: [cobalt-users] SSI with .htm and .html
- Subject: RE: [cobalt-users] SSI with .htm and .html
- From: "P S Graham \(Erols\)" <psgraham@xxxxxxxxx>
- Date: Tue Apr 17 14:58:50 2001
- List-id: Mailing list for users to share thoughts on Cobalt products. <cobalt-users.list.cobalt.com>
>
> 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