views:

162

answers:

1

Hi,

I have been trying to figure this out a while. I would like to make my app engine website use basic html and shtml whenever in order to avoid the slow warm-up phase of jsp apps on app engine. This is so that my landing pages load instantly.

Basically, I am trying to include an html file into my main html file (index.html - I tried index.shtml). This is the command I try:

<!-- include virtual="header.html" -->

However it does not work. The server side includes to not seem to get executed in app engine. Do I need to enable these commands somewhere first - or does app engine simply not allow them?

+3  A: 

SSI is a web-server-specific feature that GAE appears not to support.

(This per Nick Johnson, who's quite active on this site.)

Bosh
Correct. SSI, to the best of my knowledge, isn't part of the Java Servlet spec, either.
Nick Johnson