Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

This is my html:

<!DOCTYPE html>
<html>
    <head>
        <meta http-equiv = "Content-Language" content = "en"/>
        <meta http-equiv = "Content-Type" content="text/html; charset=utf-8">
        <link rel="stylesheet" type="text/css" href="/xxx/app/www/style.css">

Now when I load the page, the Safari inspector give me:

Resource interpreted as stylesheet but transferred with MIME type text/html

I'm working on localhost with MAMP.

I read that this is a server problem of some kind. How do I solve it? technically speaking. I'm not sure what to modify to get this to work. Could you please provide the most precise solution? Thanks.

share|improve this question
similar question( if not exact one) --> stackoverflow.com/questions/3467404/… – rt2800 May 11 '12 at 14:48

1 Answer

up vote 6 down vote accepted

Create 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

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.