Created
November 9, 2014 00:46
-
-
Save oreales/85e99c461d0684eb4b6d to your computer and use it in GitHub Desktop.
fuentes htaccess para cargar fuentes desde servidor balanceado
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
############################################ | |
## para cargar fuentes desde origin externo | |
## o local cuando es balanceada la carga en magento | |
## para que se carguen las fuentes desde el subdominio | |
<FilesMatch "\.(ttf|otf|eot|woff|font.css)$"> | |
<IfModule mod_headers.c> | |
Header set Access-Control-Allow-Origin "*" | |
</IfModule> | |
</FilesMatch> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment