FontAwesome和GIT

时间:2017-01-13 20:51:14

标签: git font-awesome

我得到了:

OTS parsing error: Failed to convert WOFF 2.0 font to SFNT

并且在我的项目中使用FontAwesome时没有加载图标。这开始于使用git进行版本控制。我已经尝试过了:

https://stackoverflow.com/a/33792610/4439693https://github.com/Microsoft/fonts/blob/master/.gitattributes

但是没有运气。有什么想法吗?

2 个答案:

答案 0 :(得分:1)

解决方案是再次从http://fontawesome.io/get-started/上传文件(.eot .woff等)。我猜他们之前编码错误,并添加了

*.eot binary
*.ttf binary
*.woff binary
*.woff2 binary

.gitattributes 文件没有改变编码。

所以上传到font-awesome / fonts并推送更改修复了问题。

答案 1 :(得分:0)

首先 转到下面的文件并将其设为'hideDefaultLocaleInURL'=>假, 配置/ laravellocalization.php

比 在.htaccess文件中设置所有代码

RewriteEngine On

# Redirect Trailing Slashes...
RewriteRule ^(.*)/$ /$1 [L,R=301]

RewriteRule ^(themes|modules|css|js|fonts|assets)/(.*) /public/$1/$2 [L]

# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ /public/index.php [L]

我希望这项工作能为您解决这个问题