nginx ssi 模塊
阿新 • • 發佈:2017-06-01
出錯 設置 開啟 版權 代碼 com type 分享 load
在nginx下與SSI配置相關的參數主要有ssi ssi_sclient_error ssi_types三個。具體的用法如下
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引用的格式如下:
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引入即可
前提reload下ssi使其生效
nginx ssi 模塊