I am a noob when it comes to django or any backend related programs. i would like to add the same static files for a path which is not home in my django project.
Here I am in my howe directory and there is no issues with loading static css and js file.home page but if i try to move to another pathother link static file are not loading. how can i load same static files but for different url other than the homepage
I even added another folder named loading in my working dir but am still unsuccessful
Django By default takes a static path from app directory, But you can change your custom static path like this...
STATIC_URL = '/static/'
STATICFILES_DIRS = ['relative path of your static folder']