Apache 配置SSI速記

2022-10-11 01:54:10 字數 450 閱讀 8208

1. 啟用模組 httpd.conf

loadmodule filter_module modules/mod_filter.so

2. options +includes

3. 增加 .shtml文件型別,並設定includes

addtype text/html .shtml

addoutputfilter includes .shtml

4. 第3步是需要重新命名檔案的,也就是說只有以.shtml結尾的檔案中的include等指令才會被apache處理,如果不想重新命名,可以設定xbithack

xbithack on

chmod +x pagename.html

設定了第4步,就不需要設定第3步,就是只要有了執行許可權的檔案中的include等指令都會被apache處理

一般包含檔案指令

附apache ssi官方文件:

apache伺服器ssi支援配置

apache伺服器ssi支援配置 1.開啟conf目錄下的httpd.conf檔案,搜尋 addtype text html shtml 找到 addtype text html shtml addoutputfilter includes shtml 把這兩行前面的 去掉 2.然後搜尋 optio...

apache2 4配置虛擬主機和ssi

之前在2.2上配置過,最近要公升級到2.4,有些不太一樣的地方。先說開啟ssi,這個跟2.2差不多 1.開啟 loadmodule include module modules mod include.so 2.在directoryindex b index.shtml b index.html 加...

SSI在APACHE中的開啟

介紹說明一下shtml和shtm 關於shtml,shtml是一種基於ssi技術的檔案,也就是server side include ssi 伺服器端包含指令,一些web server如果有ssi功能的話就會對shtml檔案特殊招待,伺服器會先掃一次shtml檔案看沒有特殊的ssi指令存在,如果有的...