Apache web server: AH00125: request exceeded the limit of 10 subqueries with FallbackResource

When I use "FallbackResource" in my apache 2.4 web server configuration, it shows the error "AH00125: request exceeded the limit of 10 levels of the nesting subquery".

Please help how to solve this. Specifies the url " http: // localhost / bv-host / plusRoot / plus / fiets " and wants it to be redirected by default index.html: "/bv-host/plusRoot/plus/index.html"

I turned on debug logging. Overwrite mode is disabled. If I delete the FallbackResource line, I do not see this error, but rather a 404 error.

I have a default installation of 2.4 on my computer with added configuration:

FallbackResource /bv-host/plusRoot/plus/index.html;
Alias /bv-host/plusRoot "/Users/ed/Develop/Projecten/Web"

What is this, debugging debug fragment:

[client ::1:57840] mod_hfs_apple: Allowing access with matching directory. filename = /Users/ed/Develop/Projecten/Web/plus/index.html;
AH00125: Request exceeded the limit of 10 subrequest nesting levels due to probable configuration error. Use 'LimitInternalRecursion' to increase the limit if necessary. Use 'LogLevel debug' to get a backtrace.
[client ::1:57840] AH00121: r->uri = /bv-host/plusRoot/plus/index.html;
[client ::1:57840] AH00123: subrequested from r->uri = /bv-host/plusRoot/plus/index.html;
[client ::1:57840] AH00123: subrequested from r->uri = /bv-host/plusRoot/plus/index.html;
[client ::1:57840] AH00123: subrequested from r->uri = /bv-host/plusRoot/plus/index.html;
[client ::1:57840] AH00123: subrequested from r->uri = /bv-host/plusRoot/plus/index.html;
[client ::1:57840] AH00123: subrequested from r->uri = /bv-host/plusRoot/plus/index.html;
[client ::1:57840] AH00123: subrequested from r->uri = /bv-host/plusRoot/plus/index.html;
[client ::1:57840] AH00123: subrequested from r->uri = /bv-host/plusRoot/plus/index.html;
[client ::1:57840] AH00123: subrequested from r->uri = /bv-host/plusRoot/plus/index.html;
[client ::1:57840] AH00123: subrequested from r->uri = /bv-host/plusRoot/plus/index.html;
[client ::1:57840] AH00123: subrequested from r->uri = /bv-host/plusRoot/plus/fiets
+4
2

Silex . FallbackResource index.php .

Rewrite.

RewriteEngine On
#RewriteBase /path/to/app
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [QSA,L]
+3

, .

, ( css), .

<link href="somewhere_bad_directory/font-awesome.min.css" rel="stylesheet" type="text/css">

FallbackResource , , .

: "FallbackResource" , "AH00125: 10 ", .

+1

Source: https://habr.com/ru/post/1614139/


All Articles