以下は私のapp.yaml
ファイルのコードです。localhost:8080/
私が自分のindex.app
荷物に正しく行けば。に行くとlocalhost:8080/index.html
404エラーが発生します。たとえばlocalhost:8080/xxxx
、他のページに移動すると、not_found.app
正しく読み込まれます。/index\.html
ケースで404エラーが発生するのはなぜですか?
ありがとう!
application: myapp
version: 1
runtime: python27
api_version: 1
threadsafe: true
handlers:
- url: /index\.html
script: index.app
- url: /
script: index.app
- url: /assets
static_dir: assets
- url: /*
script: not_found.app
libraries:
- name: jinja2
version: latest
index.pyからのコード
クラスMainPage(webapp2.RequestHandler):
def get(self):
テンプレート=jinja_environment.get_template('index.html')
self.response.out.write(template.render(template_values))
app = webapp2.WSGIApplication([('/'、MainPage)]、debug = True)
修正は太字のテキストにありました!