Forum Moderators: coopster
Here's the documentation on Configuring your server to permit SSI [httpd.apache.org].
There are multiple methods so reading this yourself is best so that you can decide how you want to go about this.
However all of this seems a little overboard, when you can just use PHP's include function:
[url=http://us3.php.net/manual/en/function.include.php]include[/url]("includes/toplinks.htm");
:)
When parsing SSI's, PHP files don't work [webmasterworld.com]
Parse HTML or not [webmasterworld.com]
virtual() is an Apache-specific function which is similar to <!--#include virtual...--> in mod_include. It performs an Apache sub-request. It is useful for including CGI scripts or .shtml files, or anything else that you would parse through Apache. Note that for a CGI script, the script must generate valid CGI headers. At the minimum that means it must generate a Content-type header.
NN