I have a CSS code that generates http 304:

[08/Nov/2011 15:22:07] "GET /site_media/logo1.gif HTTP/1.1" 304 0

How can I get a workaround using the Django test server? Any clues?

Best Regards,

link|improve this question

60% accept rate
1  
Seems to be duplicate to stackoverflow.com/questions/2730274/… – Lycha Nov 8 '11 at 21:20
feedback

1 Answer

up vote 4 down vote accepted

The 304 code is not an error. You don't need a workaround. It simply means that the static file has not changed since your browser last accessed it

For more information see the Wikipedia explanation of 3xx status codes.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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