我在CSS中使用font-face将自定义字体导入我正在使用CodeIgniter构建的Web应用程序。这是CSS代码:
@font-face {
font-family: 'UniversLT-UltraCondensed';
src: url('../Fonts/LTUnivers/universlt59ultracondensed.eot');
src: url('../Fonts/LTUnivers/universlt59ultracondensed.eot?#iefix') format('embedded-opentype'),
url('../Fonts/LTUnivers/universlt59ultracondensed.woff') format('woff'),
url('../Fonts/LTUnivers/universlt59ultracondensed.ttf') format('truetype'),
url('../Fonts/LTUnivers/universlt59ultracondensed.svg#universlt59ultracondensed') format('svg');
font-weight: normal;
font-style: normal;
}
body{
font-family: UniversLT-UltraCondensed, Helvetica, Arial, serif;
}
当我在Safari,Chrome或Opera中运行网站时,字体会正确加载。当我在FireFox中运行它时,我得到以下内容:
403错误告诉我,我的服务器配置错误或.htaccess文件错误。当涉及到那些东西时,我是个新手,但这就是我的.htaccess中的内容(假设这是问题......):
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /Tat
RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ Tat/index.php/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !^(index\.php|images|robots\.txt|css|fonts|woff|ttf|svg|eot)
RewriteRule ^(.*)$ Tat/index.php/$1 [L]
</IfModule>
<IfModule !mod_rewrite.c>
ErrorDocument 404 /Tat/index.php
</IfModule>
还应该注意,这些文件具有777权限(我可以通过SSH访问运行Ubuntu Lucid的服务器)。
有什么建议吗?我没有线索......
答案 0 :(得分:5)
无论如何,对于可能有类似问题的其他人来说 - 问题是我在开发虚拟服务器上设置了Linux的权限,但在VM上安装的文件夹上没有设置Mac OSX的权限。所以我打开了终端和chmod -R 777'd字体文件夹,它似乎工作。