[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [cobalt-users] server side includes
- Subject: Re: [cobalt-users] server side includes
- From: "Clint Decker" <nim1998@xxxxxxx>
- Date: Fri Nov 10 13:50:05 2000
- List-id: Mailing list for users to share thoughts on Cobalt products. <cobalt-users.list.cobalt.com>
> A raq 4, I have both eth ports connected to the network, one for external,
> one for internal (private network). The external connection I'm still
> working on getting with PSInet, so I'm using the ip address for the
private
> network to develope the web site. However, SSI does not seem to be
working.
> I named the files .shtml and used the line below. I viewed the source and
it
> appeared. What gives?
>
> <!--#include file="top.html"-->
Try using
<!--#include virtual="top.html" -->
instead of "include file"
Also.. if you add this line to your .htaccess file, you dont need to name it
.shtml
AddHandler server-parsed .htm .shtm .html .shtml
Clint