Apache配置支援目錄瀏覽
一.目錄瀏覽的配置。
主配置檔案 httpd.conf 中修改:
1)新增支援模組。
LoadModule autoindex_module modules/mod_autoindex.so
LoadModule dir_module modules/mod_dir.so
注意一定要擁有這兩個模組,否則下面的配置不生效,返回404 Not Found錯誤。
這個模組也有可能直接編譯到Apache核心檔案httpd中去了。
可以使用httpd –l 檢視是否靜態包含了這個模組。
如果不存在就在modules資料夾中檢視是否擁有這個模組。
2)為DocumentRoot目錄新增Options Indexes,即可生成目錄。
<Directory "/usr/local/apache2/htdocs">
Options Indexes FollowSymLinks
</Directory>
這裡Indexes控制是否開啟目錄瀏覽,如果要關閉目錄瀏覽,使用
Option -Indexes
3)載入 httpd-autoindex.conf 配置
Include conf/extra/httpd-autoindex.conf
在配置檔案httpd-autoindex.conf中的修改:
IndexOptions FancyIndexing HTMLTable VersionSort NameWidth=* FoldersFirst Charset=UTF-8 SuppressDescription SuppressHTMLPreamble
其中
FancyIndexing 支援美化顯示;
HTMLTable 允許底層程式碼把檔案列表生成在一個table元素裡面;
VersionSort 安裝版本排序;
NameWidth=* 頁面自動匹配檔名寬度;
FoldersFirst 安裝資料夾優先排列;
Charset=UTF-8 支援中文顯示;
SuppressDescription 不顯示檔案描述;
最後一個忘記是什麼了,去看apache 官網的說明。。。
2.apache 原生目錄實在難看 。還好有改善的方法。網上有 H5AI 的模版可以下載使用。但現在是用在嵌入式平臺,資源有限,只做了參考。
1)apache提供配置兩個檔案,以便修飾頁面。
# ReadmeName is the name of the README file the server will look for by
# default, and append to directory listings.
#
# HeaderName is the name of a file which should be prepended to
# directory indexes.
ReadmeName /footer.shtml (檔案前必須加/,使用絕對路徑,否則子目錄無法繼承該檔案)
HeaderName /header.shtml
這兩個檔案放於DocumentRoot目錄下。
2)如果製作這兩個檔案基本與底層無關了。可以參考: