My blog had this vexing problem where it used to render ugly, really ugly, as the stylesheet wasn’t being loaded on Firefox. Mon blog a ce problème frustrante où elle a utilisé pour rendre laid, vraiment laid, comme la feuille de style n'était pas chargée sur Firefox. However after a refresh everything was fine. Toutefois, après un rafraîchissement tout allait bien. Even the Alexa thumbnail displayed the front page in all its css-less ugliness. Même les Alexa aperçu affiché la page d'accueil sous toutes ses css-moins laideur. Initially I thought it was a temporary file loading error. Au départ, je pensais que c'était un fichier temporaire de chargement erreur. I also reduced the number of Javascripts on the page. J'ai également réduit le nombre de javascripts sur la page. None of them could solve the problem. Aucun d'entre eux ne pourrait résoudre le problème. Finally today, when I was debugging a project using Firebug, I noticed the actual problem. Enfin aujourd'hui, alors que j'étais un projet de débogage en utilisant Firebug, j'ai remarqué que le véritable problème.

The stylesheet was not being loaded simply because the file type returned by the web server was text/plain instead of the required type - text/css. La feuille de style n'était pas en cours de chargement tout simplement parce que le type de fichier renvoyé par le serveur web est text / plain au lieu du type requis - text / css. The solution was simple. I added the following to httpd.conf and restarted the server: La solution est simple. J'ai ajouté ce qui suit à httpd.conf et redémarré le serveur:
AddType text/css .css - The solution here doesn’t work because the problem is elsewhere, with mod_cache. AddType text / css. Css - La solution ne fonctionne pas parce que le problème est ailleurs, avec mod_cache.
The temporary solution is to add the style.css to DisableCache directive in the virtual host configuration section (or in the main section). La solution temporaire est d'ajouter le style.css à DisableCache directive en l'hôte virtuel de configuration (ou dans la section principale). The permanent solution is to update Apache. La solution permanente est de mettre à jour Apache. This is a documented mod_cache defect. Il s'agit d'un défaut mod_cache documenté.

Thanks to Merci à Firebug for helping me solve this problem. pour m'aider à résoudre ce problème.

Note: Internet Explorer did render fine even with this error. Note: Internet Explorer ne rend bien même avec cette erreur.