控制文件列表

  使用Dreamhost的朋友会发现,如果目录下没有index.*文件,那么访问者就会看到当前目录的所有文件列表。解决方法很简单,可以通过编辑.htaccess文件来控制文件列表的显示:
[code]IndexIgnore *[/code]
这样来访者会看到一个空的目录,什么文件都不会显示。
[code]IndexIgnore *.gif *.jpg[/code]
仅仅不显示*.gif *.jpg的文件。
[code]Options -Indexes[/code]
这个最彻底,来访者会得到一个404错误。

本文参考这篇文章,谢谢桑葚提供相关信息。

Technorati Tags: ,

Leave a Reply

Note: Commenter is allowed to use '@User+blank' to automatically notify your reply to other commenter. e.g, if ABC is one of commenter of this post, then write '@ABC '(exclude ') will automatically send your comment to ABC. Using '@all ' to notify all previous commenters. Be sure that the value of User should exactly match with commenter's name (case sensitive).