
September 17th, 2010, 03:30 PM
|
|
Contributing User
|
|
Join Date: May 2009
Posts: 34
Time spent in forums: 2 h 12 m 43 sec
Reputation Power: 5
|
|
Note that if you use this format:
Code:
<Directory /path/to/some/deep/directory>
Options Indexes
</Directory>
It will reset all other Options set above that directory, such as the Include option.
If you want to add Index listing, then use:
Code:
<Directory /path/to/some/deep/directory>
Options +Indexes
</Directory>
This will Add the listing Option to the other Options that may already be set.
Similarly you can remove options using a "-" sign.
http://httpd.apache.org/docs/1.3/mod/core.html#options
|