Log in

View Full Version : Rules involving SSI???



robin9000
02-07-2009, 03:28 PM
Is there a rule with SSI that says your SSI sheet needs to be in the same folder as your the pages you want to load into the SSI page?

The reason I ask is because if you look at my page
http://www.robinsden.110mb.com/services/computer/rates.shtml

I have palced the full path to both pages I would like to include in my page but they still are not loading.

One other Note: I have another page already working but both the SSI and pages I load into it are in the same folder, so agin my question is, is this the only way SSI will work?

Snookerman
02-07-2009, 04:59 PM
This is what I could find:

The file attribute is a file path, relative to the current directory. That means that it cannot be an absolute file path (starting with /), nor can it contain ../ as part of that path. The virtual attribute is probably more useful, and should specify a URL relative to the document being served. It can start with a /, but must be on the same server as the file being served.
Source: http://httpd.apache.org/docs/1.3/howto/ssi.html (http://httpd.apache.org/docs/1.3/howto/ssi.html)

Good luck!