Depending on your server configuration. Some condition, it can be solved by creating an .htaccess
file into your root folder (or update the existing one) with this line inside
AddType text/css .css
this will tell apache to send the right content-type
header for .css
file
On my case, the above won’t work at all. My own hosted Ubuntu needs below changes so that is will works.
Check your
/etc/apache2/apache2.conf
If there are any
SetHandler application/x-httpd-php
line, try to comment it and then reload your apache by $ sudo system apache2 reload
What do you think?