In order to combine files in htaccess, for instance:
/img/logo.png
/sound/true.p3
/sound/false.mp3
You can use <filesMatch>
with regex pattern to test multiple files
<filesMatch "(logo\.png|true\.p3|test\.jpg)">
Allow from all
Satisfy Any
</filesMatch>
Add comment