[Fixed]-Django – http code 304, how to workaround in the testserver?

28👍

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.

7👍

If you’re getting 304 with files you did change, you can force reloading in your browser by checking “Disable cache” in your browser’s dev tools (on Chrome/ium, right click on webpage -> inspect element -> go to network tab -> disable cache)

👤e18r

Leave a comment