FontAwesome没有显示没有www

时间:2017-01-18 12:20:48

标签: css web drupal drupal-7 font-awesome

我的网站与fontawesome一起使用,但是当我输入没有www的网站时。之前,它没有显示图标。 当我把www。在前面他们表明了操作。 我需要改变什么。相关网站为www.bluestar.bebluestar.be

编辑:这是我的控制台:

Access to Font at 'http://www.bluestar.be/sites/all/themes/rhythm/fonts/fontawesome-webfont.ttf?v=4.4.0' from origin 'http://bluestar.be' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://bluestar.be' is therefore not allowed access.

解 我将这些行添加到代码中以将site.com重定向到www.site.com

RewriteCond %{HTTP_HOST} .
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule ^ http%{ENV:protossl}://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

1 个答案:

答案 0 :(得分:2)

在您的drupal项目的根目录中找到.htaccess。

添加这些行

标题始终设置Access-Control-Allow-Origin“*” 标题始终设置Access-Control-Allow-Methods“POST,GET,OPTIONS,PATCH,DELETE”

你很高兴。 确保在服务器上启用了modrewrite。