2011年5月4日 星期三

[Server] Apache SSI

* Setting Apache SSI Configuration (httpd.conf):

- Load Module
加上以下 module,預設是有開,但還是檢查檢查
LoadModule include_module modules/mod_include.so

- Add "+Includes"
在 <directory "static="" path"="" resources="">;</directory> 此 Directory 中,
其中的 Option 後加上 +Includes

- Add filter
在 <ifmodule mime_module=""></ifmodule> 中加上 AddOutputFilter INCLUDES .html
表示要 include 的是 html 檔

--- 到此已可在 html 中 include html file ---

- 在 weblogic module, 中加上以下內容,
<location "/mobile">
    SetOutputFilter Includes
</location>

Location 指的是 context root


* 然後 便可在 html or jsp 中 include 另一檔案

html 中:  <!--#include file="xxx.html" -->

jsp 中:  <!--#include virtual="xxx.html" -->

沒有留言:

張貼留言