Still struggling with the same issue on a new domain: https://thecuriouswildcrafter.ca/
I am finding that the Icomoon font icons are not displaying properly. They are displaying as an empty box icon.
I have added the following code to my .htaccess file at the top directory of the website in an attempt to correct a CORS issue.
<FilesMatch “.(eot|otf|ttf|woff|woff2)”>
Header always set Access-Control-Allow-Origin “*”
</FilesMatch>
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
RewriteRule ^ http://%1%{REQUEST_URI} [L,R=301]
Is there a solution for this issue?
Hi, Alexandru.
Thank you for your response.
How did you find this version of the error message? All I am getting is a 403.
In my .htaccess file at the top level I have the lines:
<FilesMatch “.(eot|otf|ttf|woff|woff2)”>
Header always set Access-Control-Allow-Origin “*”
</FilesMatch>
It also has:
RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
RewriteRule ^ http://%1%{REQUEST_URI} [L,R=301]
My WordPress is also set for https://richardosborne.ca
What else do I need to do to unblock these fonts?