Bootstrap3 - Glyphicons are not displayed in Chrome, only

前端 未结 12 2631
佛祖请我去吃肉
佛祖请我去吃肉 2021-02-08 19:13

Strangely, none of Bootstrap3 glyphicons are displaying in Chrome v31(displays a small square). But, works fine in FF v26, Opera v18, Safari v5.1 and IE v10. Also, works fine in

12条回答
  •  耶瑟儿~
    2021-02-08 19:57

    My .htaccess in /wp-content caused the error due to a file type restriction. After I added woff2 to the list of allowed file types everything works nicely again.

    # Protect /Wp-Content/
    Order deny,allow
        Deny from all
        
        Allow from all
        
    

提交回复
热议问题