apache2.xml Add notes about FallbackResource #4580
Open
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
I recently encountered an issue when configuring a
FallbackResource
for Apache.We are in the process of migrating legacy paths to use a routing engine and as part of the migration we are providing a shim. As a result we have users hitting paths such as
/example.php
which are now expected to be handled by the Routing system.We discovered that our Apache2 test images were not hitting the Routing system for these paths and, after digging, that it's because the
SetHandler
andAddHandler
directives are set based on the path location rather than the file. That is, if the locationhttps://example.com/example.php
is requested then the<FilesMatch>
directive is always applied based on the\.php$
regex match. As a result, theFallbackResource
directive is not applied (beceause a Handler has already been applied).This has previously been rejected as a bug in Apache2 as it is the expected behaviour.
I have:
Given that the
FallbackResource
is the recommended way to use a routing system such as Symfony it is probably worth documenting:FallbackResource
directive; andIf -f
directive when setting the handler to only apply it when the requested file actually exists.