|
SSI stands for Server Side Include... and it means that you can insert the contents of another webpage, program or file into the webpage that adds the Server Side Include. A couple of important points you need to follow for SSI to work on your domain.
|
| <!--#exec cgi="/cgi-bin/THE-PROGRAM-NAME-HERE.cgi"--> |
| One quick observation... do you notice how this SSI instruction uses a *relative* URL (/cgi-bin/....) instead of a FULL URL? This is very important to keep in mind when using SSI. For example: let us say, we want to include a counter program (that has the name, counter.cgi), on our home page, called normally index.html. Remember! Because we want to add an SSI instruction in our home page, it must end with .shtml or .sht. In this case, we would name it index.shtml. |