amazon s3 - Server Side Include on S3 -
amazon s3 has static website hosting, not support tags like:
<!--#include virtual="i/header.htm" --> <!--#echo var="i/header.htm" --> <!--#include file="i/header.htm" -->
is there anyway mimic functionality without having sort of javascript/ajax content request header on every page on s3?
you use javascript assemble page in client browser. jquery:
$('#header').load('header.html');
this has serious seo drawback-- search engines google won't see final page.
you embed content in page iframe.
Comments
Post a Comment