.htaccess File Options -Indexes on Subdirectories

前端 未结 2 559
北荒
北荒 2020-12-09 15:02

I have the following .htaccess line, simple no indexes on root.

Options -Indexes

What do we add so it propagates to any sub directory inste

2条回答
  •  孤城傲影
    2020-12-09 15:51

    The correct answer is

    Options -Indexes
    

    You must have been thinking of

    AllowOverride All
    

    https://httpd.apache.org/docs/2.2/howto/htaccess.html

    .htaccess files (or "distributed configuration files") provide a way to make configuration changes on a per-directory basis. A file, containing one or more configuration directives, is placed in a particular document directory, and the directives apply to that directory, and all subdirectories thereof.

提交回复
热议问题