Click to See Complete Forum and Search --> : SSI In Subfolders


stene
05-19-2005, 12:45 PM
Hello,

Doesen't SSI works in subfolders?

Take a look at this:
http://www.freemp3world.com/artist/0-9/index.shtml

I use this codes:
<!--#include file="header.shtml"-->

Cheers,
-Stene

buntine
05-19-2005, 09:30 PM
Is the header.shtml file in the 0-9 directory, too?

You might need:

<!--#include file="..\..\header.shtml" -->

Regards.

TheBearMay
05-20-2005, 07:34 AM
...or maybe
<!--#include virtual="..\..\header.shtml" -->

buntine
05-20-2005, 10:38 AM
Good point.

sunitad
06-09-2005, 01:06 PM
Any idea about how to add query string to complete the virtual path for SSI include?

buntine
06-09-2005, 11:01 PM
Not possible as far as I know. SSI works by grabbing the included file and pasting it's content into the calling file. So, you can use the QueryString from the parent file in the included file but you can't actually create a QueryString for the included file as it does not have a seperate request.

Regards.