Django: GET css returns 404?
I am developing a Django site and after a series of edits I ran my server again when suddenly - no css! The server still displays the html site, of course, but the css all across the site is throwing a 404 error. My static files information in my settings.py wasn't edited at all: import os # hack to accommodate Windows CURRENT_PATH = os.path.abspath(os.path.dirname(__file__).decode('utf-8')).replace('\\', '/') STATIC_URL = '/static/' # Additional locations of static files STATICFILES_DIRS = ( os.path.join(CURRENT_PATH, 'static'), ) My base template does a simple call for the file based on the