Server side includes on app engine (<!-- include virtual="header.html" -->)?
Posted
by Alexandre H. Tremblay
on Stack Overflow
See other posts from Stack Overflow
or by Alexandre H. Tremblay
Published on 2010-04-24T19:14:16Z
Indexed on
2010/04/24
19:23 UTC
Read the original article
Hit count: 355
google-app-engine
|server-side-includes
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?
© Stack Overflow or respective owner