.htaccess 控制目录浏览
出自Guoshuang Wiki
不允许目录浏览(Index)
IndexIgnore *
忽略 *.png *.gif *.jpg 文件的 index 显示
IndexIgnore *.png *.gif *.jpg
apache 默认关掉目录浏览而你需要打开的话,加入
Options +Indexes
参数设置
Options Indexes indexOptions FancyIndexing ScanHTMLTitles NameWidth=128 DescriptionWidth=256 HTMLTable VersionSort FoldersFirst
参数含义如下:
- ScanHTMLTitles:搜索HTML标题
- NameWidth:文件命显示字节数
- DescriptionWidth:描述显示字节数
- HTMLTable:允许HTML格式
- FoldersFirst:目录优先
索引排除语法
IndexIgnore header.html footer.html
header.html footer.html 这两个文件不会在索引(目录浏览)中出现。
索引头部嵌入文件
HeaderName /data/index/header.html
索引底部嵌入文件
ReadmeName /data/index/footer.html
默认索引排序方式
IndexOrderDefault Ascending Date
关闭服务器标志
ServerSignature Off
控制目录(子目录)中索引(index)文件顺序
DirectoryIndex index.html index.htm index.php index.cgi
参考资料:
- http://httpd.apache.org/docs/1.3/mod/mod_autoindex.html
- http://perishablepress.com/press/2008/11/02/better-default-directory-views-with-htaccess/
from http://wiki.guoshuang.com/Htaccess_%E6%8E%A7%E5%88%B6%E7%9B%AE%E5%BD%95%E6%B5%8F%E8%A7%88
收了 3q