ruby on rails - FontAwsome font awesome not working in internet explorer 8/9/10 amazon s3 -


it seems fontawesome not working on amazon s3. i'm getting below error internet explorer

 @font-face failed cross-origin request. resource access restricted. 

i have cors configured below:

<?xml version="1.0" encoding="utf-8"?> <corsconfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/">     <corsrule>         <allowedorigin>*</allowedorigin>         <allowedmethod>get</allowedmethod>         <maxageseconds>3000</maxageseconds>         <allowedheader>content-*</allowedheader>         <allowedheader>host</allowedheader>     </corsrule> </corsconfiguration> 

this seems working firefox (it had same error on before cors config) still not on ie.

i thought caching issue done 2 days ago.

is there other config need fix error , display icons on ie aswell?

have tried setting allowedorigin http://*.yourdomain.com?

oh, , didn't using cloudfront, if are, s3+cloudfront have major issues cors support when try use them together.


Comments

Popular posts from this blog

php - regexp cyrillic filename not matches -

c# - OpenXML hanging while writing elements -

sql - Select Query has unexpected multiple records (MS Access) -