apache伺服器ssi支援配置
1. 開啟conf目錄下的httpd.conf檔案,搜尋「addtype text/html .shtml」,找到:
# addtype text/html .shtml
# addoutputfilter includes .shtml
把這兩行前面的#去掉 。
2. 然後搜尋「options indexes followsymlinks」
在搜尋到的那一行後面新增「 includes」
即將該行改變為 options indexes followsymlinks includes
重新啟動即可。
Linux伺服器 apache支援cgi
apache支援cgi 1 開啟apache配置檔案httpd.conf,搜尋 cgi 找到下面的一段,去掉 addhandler 前面的 這樣就開啟了apache的cgi功能 2 cgi的目錄在 var www cgi bin 在這裡建立乙個測試檔案 test.cgi 輸入內容如下 root lo...
Nginx配置伺服器SSI
一.什麼是ssi ssi server side include,是一種基於服務端的網頁製作技術,大多數 尤其是基於unix平台 的web伺服器如netscape enterprise server等均支援ssi命令。它的工作原因是 在頁面內容傳送到客戶端之前,使用ssi指令將文字 或 資訊包含到網...
開啟SSI使Apache支援shtml網頁檔案
要實現apache支援shtml偽靜態則需要開啟ssi並可支援用shtml來include網頁檔案 1 開conf目錄下的httpd.conf檔案,搜尋 addtype text html shtml 找到 addtype text html shtml addoutputfilter includ...