在nginx下與SSI配置相關的參數主要有ssi ssi_sclient_error ssi_types三個。具體的用法以下html
ssi on
開啓ssi支持,默認是off
ssi_silent_errors on
默認值是off,開啓後在處理SSI文件出錯時不輸出錯誤提示:"[an error occurred while processing the directive] "
ssi_types
默認是ssi_types text/html,因此若是須要htm和html支持,則不須要設置這句,若是須要shtml支持,則須要設置:ssi_types text/shtml
SSI引用的格式以下:nginx
SSI的格式: <!--#include file="foot.html"--> 或 <!--#include virtual="/tx/foot.html"--> 路徑是相對server中root根目錄。站點的絕對路徑
例如一個index.html頁面裏有下面一段運維
<div class="footer"> <div class="footer_bottom">版權全部 @2011 運維之路www.361way.com 浙ICP備XXXX號</div> <div class="footer_bottom" >聲明:本站…………………… </div> </div>
我能夠保存爲foot.html或者foot.shtml,在index.html引入便可spa
前提reload下ssi使其生效code