This is not working for me - I should have known better by now
This entry is breaking my fontawesome and my .htaccess despite me changing the permissions - that doesnt seem to solve the problem for me
# BEGIN W3TC CDN
<FilesMatch "\.(ttf|ttc|otf|eot|woff|font.css)$">
<IfModule mod_headers.c>
Header set Access-Control-Allow-Origin "*"
</IfModule>
</FilesMatch>
# END W3TC CDN
this entry however works, but it keeps on being overwritten with the code above.
<FilesMatch "\.(ttf|otf|eot|woff)$">
<IfModule mod_headers.c>
Header set Access-Control-Allow-Origin "*"
</IfModule>
</FilesMatch>
this plugin is then useless to me if I am not able to add entries to my .htaccess.
My files are on another domain I'm using as a CDN, but I can even disable the automatic directory listing because even that entry is being overwritten by the entries the plugin makes to the .htaccess!!!!