I have 2 static directories in Flask.
static/
- css/
- js/
results/
- 1/- index.html
- details.json
 
- 2/- index.html
- details.json
 
I followed along a few other answers and glanced through the documentation for serving static files.
app = Flask(__name__)
app.config['RESULT_STATIC_PATH'] = "results/"
@app.route('/results/<path:file>')
def serve_results(file):
    # Haven't used the secure way to send files yet
    return send_from_directory(app.config['RESULT_STATIC_PATH'], file)
With the following code I can now request for files in the results directory. 
I'm more familiar with PHP and Apache. Say if a directory has an index.php or index.html file, it is served automatically.
My requirement:-
- Access any file in the results directory
- If I send a request for localhost:3333/results/1I should be servedindex.html
I can do the same with Flask by adding a route and checking if index.html exists withing the sub directory and then serving it. I found a few more similar pointers here
I currently use two routes to get the functionality. There certainly is a better way.
Why did I include details about the static directory?
 It is highly possible that I may be doing something wrong. Please let me know. Thanks :)
 
     
     
    