in before mod_autoindex might have kicked in.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1679620 13f79535-47bb-0310-9956-
ffa450edef68
static int dir_fixups(request_rec *r)
{
if (r->finfo.filetype == APR_DIR) {
- if (fixup_dir(r) == OK) {
- return OK;
- }
- /* we're running between mod_rewrites fixup and its internal redirect handler, step aside */
- if (!strcmp(r->handler, REWRITE_REDIRECT_HANDLER_NAME)) {
- return DECLINED;
- }
-
- return fixup_dflt(r);
+ /* serve up a directory */
+ return fixup_dir(r);
}
else if ((r->finfo.filetype == APR_NOFILE) && (r->handler == NULL)) {
/* No handler and nothing in the filesystem - use fallback */