Help Center

Q: Do you have Server Side Includes (SSI)?

We do support Server Side Includes (SSI). All files ending in .shtml are parsed as SSI files.

Since PHP can do everything that SSI can do, including exec some other programs, we recommend using PHP instead of SSI.

Here are some common SSI commands and their PHP equivalents:

SSI - Include a text file:
<!--#include file="sitemap.txt"-->
PHP equivalent:
<? include("sitemap.txt"); ?>

SSI - File modification date:
<!--#config timefmt=" %Y-%m-%d" -->
<!--#echo var="LAST_MODIFIED"-->
PHP equivalent:
<? echo date("Y-m-d", filemtime(basename($SCRIPT_FILENAME))); ?>
FREQUENTLY ASKED QUESTIONS
1) Can I have all .html files parsed as .shtml SSI files?

2) Do you have Server Side Includes (SSI)?