1. 確認加載include.so模塊,將註釋去掉:
LoadModule include_module libexec/apache2/mod_include.so
2. AddType部分去掉這兩段註釋:
AddType text/html .shtml
AddOutputFilter INCLUDES .shtml
3. Directory目錄權限裏面找到
Options Indexes FollowSymLinks
增長Includes修改成:
Options Indexes FollowSymLinks Includes
4. 從新啓動Apache,測試:
<!–#include file=」head.html」–>
Holle Word!,這是中間的內容
<!–#include file=」foot.html」–>
如下是其它網友的補充:
什麼是SSI?
SSI是英文Server Side Includes的縮寫,翻譯成中文就是服務器端包含的意思。從技術角度上說,SSI就是在HTML文件中,能夠經過註釋行調用的命令或指針。SSI具備強大的功能,只要使用一條簡單的SSI命令就能夠實現整個網站的內容更新,時間和日期的動態顯示,以及執行shell和CGI腳本程序等複雜的功能。
如何使你的Apache服務器支持SSI?
Apache默認是不支持SSI的,須要咱們更改httpd.conf來進行配置。我這裏以windows平臺的Apache 2.0.x爲例,打開conf目錄下的httpd.conf文件,搜索「AddType text/html .shtml」,搜索結果: html
把這兩行前面的#去掉。
而後搜索「Options Indexes FollowSymLinks」
在搜索到的那一行後面添加「 Includes」
即將該行改變爲 Options Indexes FollowSymLinks Includes
保存httpd.conf,重起apache便可。
到此咱們就完成了對Apache SSI的設置。shell