Revision 9602
Added by Aaron Marcuse-Kubitza over 11 years ago
web/.htaccess | ||
---|---|---|
3 | 3 |
Options +FollowSymLinks +Indexes +MultiViews |
4 | 4 |
|
5 | 5 |
DirectorySlash off |
6 |
DirectoryIndex on
|
|
7 |
# index.* also supported (by "redirect to index.*" RewriteRule)
|
|
6 |
DirectoryIndex disabled
|
|
7 |
# index.* is instead supported by "redirect to index.*" RewriteRule
|
|
8 | 8 |
|
9 | 9 |
### mod_rewrite |
10 | 10 |
|
Also available in: Unified diff
bugfix: web/.htaccess: DirectoryIndex: use disabled instead of on because on is actually treated as a filename, and does not invoke mod_autoindex. the DirectoryIndex directive and the mod_dir module actually apply only to manual index files, not to autogenerated dir listings (which are handled by mod_autoindex).