webapp2 under Apache (= without Google App Engine)
问题 I am trying to run webapp2 under Python with Apache and mod_wsgi - specifically: Wampserver for Windows 7 with Apache 2.2.22. So far, I have failed miserably. :-( I used the following example from https://developers.google.com/appengine/docs/python/gettingstartedpython27/usingwebapp: import webapp2 class MainPage(webapp2.RequestHandler): def get(self): self.response.headers['Content-Type'] = 'text/plain' self.response.out.write('Hello, webapp World!') app = webapp2.WSGIApplication([('/',