I recently discovered that it's quite easy to check if a site is running on Django as its not possible to change the location of DJANGO Admin styles located at /static/admin/css/base.css
The only thing I can change at the path shown above is /static
as I set :
STATIC_URL = '/static/'
at settings.py
Is there any way that I can change the path behind /static
?
Would be great If I could hide the framework that I'm using for my website.