本文为大家介绍nginx服务器中,支持ssi包含文件的方法,供大家学习参考。
主要是三个参数,ssi,ssi_silent_errors和ssi_types,均可以放在http,server和location的作用域下。
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的格式:
<!--#include file="bottom.htm"-->
或
<!--#include virtual="/hx/bottom.htm"-->
路径是相对server中root根目录。
更多内容,参见官方文档:http://wiki.nginx.org/NginxChsHttpSsiModule
示例:
1.开启shtml后缀的文件名支持ssi
2.开启html后缀的文件名支持ssi
3.在zt目录下开启html后缀的文件名支持ssi
您可能感兴趣的文章:
nginx、apache开启ssi(在HTML文档中增加动态内容)
IIS7输出缓存对SSI的影响应该如何处理
配置Apache支持cgi、SSI、shtml
简单了解niginx ssi