We have a CGI script which dynamically generates a certain page on our site.
We want to include an SSI on that dynamically created page.  Is that
possible?  We have two "AddHandler" statements for files that end in .cgi...

<IfModule mod_mime.c>
    ...
    AddHandler server-parsed .cgi
    ...
</IfModule>

<VirtualHost 192.168.1.1>
    ServerName www.xyz.com
    ... 
    AddHandler cgi-script .cgi
</VirtualHost>

Unfortunately, the dynamically generated page is not being server-parsed
because the Include virtual statement is showing up in the HTML source (the
same statment on a .shtml file, however, is replaced with the result of the
SSI).

Any help would be greatly appreciated.

Reply via email to