My website is set up to use SSI and it's been working great.
However, when I try to include a file via SSI it won't work for I use a relative path. For example, the following works
<html>
<head>
<!--#include virtual="include/head.shtml" -->
</head>
</html>
But this does not (assume that the files exist)
<html>
<head>
<!--#include virtual="../include/head.shtml" -->
</head>
</html>
Is there something I'm missing, or is there a way I can get more information regarding this error.