Hello All,
I need to modify the default settings for the filesMatch in the apache httpd.conf file from -

<FilesMatch "^\.ht">
Order allow,deny
Deny from all
Satisfy All
</FilesMatch>

so that to also include -

<FilesMatch ".(eot|ttf|otf|woff)">
Header set Access-Control-Allow-Origin "*"
</FilesMatch>

I would appreciate the suggestions, somehow the combination of these regular expressions is not working for me. I tried below -

<FilesMatch "^\.ht|.(eot|ttf|otf|woff)">
    Order allow,deny
    Deny from all
    Satisfy All
    Header set Access-Control-Allow-Origin "*"
</FilesMatch>

Due to this, the server won't start complaining about header setting at the wrong place.

Thank you.

Recommended Answers

All 4 Replies

Shouldn't the dot be escaped with a backslash?

thank you pritaeas for your immediate help, although I could not try this solution. will try it soon. yes I missed to see the dot needs escaping.
but what about the header, will it be fine to include it here.

I don't see any mention of Header being valid for FilesMatch in the manual.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.