2010-12-01 9 views

答えて

4
application: appname 
version: 1 
runtime: python 
api_version: 1 

handlers: 

- url: /favicon.ico 
    static_files: img/favicon.ico 
    upload: img/favicon.ico 
    mime_type: image/x-icon 

- url: /css #your css folder 
    static_dir: css 

- url: /scripts #your javascript folder 
    static_dir: scripts 


- url: /img #your image folder 
    static_dir: img 

- url: /.* 
    script: your_script.py 
+0

ありがとうございました!フィラール。 – acaascacsaacaascacaac

0

あなた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) 

ではそれは、このように書くのはよくないです "静的" フォルダ名に

handlers: 
- url: /feedbacks/ 
    static_dir: feedbacks 

- url: /css/ 
    static_dir: static 

- url: /js/ 
    static_dir: static 

- url: /.* 
    script: main.py 

をあなたの最初の3つのファイルを入れてください、 これで問題は解決します。

+0

返信いただきありがとうございます!ビッグベアー。 – acaascacsaacaascacaac

関連する問題