I am creating a web application using the bottle framework. Since we need to provide routes to static files such as:
def server_css(self, filename):
return static_file(filename, root='css')
Is there any way from restricting a user in just typing /css/file.css to access the file?