[Django]-404 GET (Trying to use Tornado Server to serve static files):

5👍

The first matching handler is used, which in this case is the FallbackHandler (which matches everything: ".*". Move this to after the /static/(.*) rule.

Leave a comment