Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 12th, 2012  |  syntax: None  |  size: 1.06 KB  |  hits: 35  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Firefox 403 on Fonts on CodeIgniter Site
  2. @font-face {
  3.     font-family: 'UniversLT-UltraCondensed';
  4.     src: url('../Fonts/LTUnivers/universlt59ultracondensed.eot');
  5.     src: url('../Fonts/LTUnivers/universlt59ultracondensed.eot?#iefix') format('embedded-opentype'),
  6.          url('../Fonts/LTUnivers/universlt59ultracondensed.woff') format('woff'),
  7.          url('../Fonts/LTUnivers/universlt59ultracondensed.ttf') format('truetype'),
  8.          url('../Fonts/LTUnivers/universlt59ultracondensed.svg#universlt59ultracondensed') format('svg');
  9.     font-weight: normal;
  10.     font-style: normal;
  11. }
  12.  
  13. body{
  14.     font-family: UniversLT-UltraCondensed, Helvetica, Arial, serif;
  15. }
  16.        
  17. <IfModule mod_rewrite.c>
  18. RewriteEngine On
  19. RewriteBase /Tat
  20. RewriteCond %{REQUEST_URI} ^system.*
  21. RewriteRule ^(.*)$ Tat/index.php/$1 [L]
  22. RewriteCond %{REQUEST_FILENAME} !-f
  23. RewriteCond %{REQUEST_FILENAME} !-d
  24. RewriteCond $1 !^(index.php|images|robots.txt|css|fonts|woff|ttf|svg|eot)
  25. RewriteRule ^(.*)$ Tat/index.php/$1 [L]
  26. </IfModule>
  27.  
  28. <IfModule !mod_rewrite.c>
  29. ErrorDocument 404 /Tat/index.php
  30. </IfModule>