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.