[Fixed]-Apache22 not serving django1.8 static files

1👍

Try changing:

Alias /static​​/assets/ "C:/Users/name/Documents/app/DRF/app/public"

to:

Alias /static​​/assets/ "C:/Users/name/Documents/app/DRF/app/public/"

You must match the trailing slash on URL and file path if you are going to add a slash.

So, either on both, or not on either.

Leave a comment