With apache htaccess, allow access to files in a subdirectory that are restricted in the parent directory
Given the following structure: /a /a/b In /a I have the following .htaccess: <FilesMatch ".(phpd?|phpt)$"> Require all denied </FilesMatch> and in /a/b: Require all granted The purpose being that, in general, certain file types are not allowed to be accessed,…