What is the htaccess Options -Indexes for?

后端 未结 2 1467
温柔的废话
温柔的废话 2021-02-01 02:37

I looked at the explanation in the apache.org site but it didn’t explained in a way I can understand. I found some info here .htaccess File Options -Indexes on Subdirectories bu

2条回答
  •  灰色年华
    2021-02-01 02:56

    The Indexes option sets whether you can "browse" the directory or not. If indexes is set to plus, and the directory has no index.html or index.php (of whatever) file, it will show the contents of the directory just like your filemanager would do. So if there are ten images in there, it simply shows them as a list with links to the actual image. You can click them and open them.

    Most of the time this is not what you want. You don't want others to see what is inside that folder. So then you turn it off with -Indexes.

    Here you can see an example of an open dir, as they are called: http://www.ecoutetpartage.fr/images/

提交回复
热议问题