Put your first 3 files in the folder name " static "
handlers: - url: /feedbacks/ static_dir: feedbacks - url: /css/ static_dir: static - url: /js/ static_dir: static - url: /.* script: main.py
In main.py
class IndexHandler(webapp.RequestHandler): def get(self): self.redirect('static/index.html') def main(): application = webapp.WSGIApplication([ ('/index.html', IndexHandler), ], debug=True) run_wsgi_app(application)
It is not good to write this way, but it will solve your problem.
source share