2014-09-23 2 views

답변

2

app.yaml과 폴더 구조를 표시 할 수 있습니까? Python, Java, PHP, Go입니까?

의 파이썬, 당신은 당신의 애플리케이션 제목을 파일에이 폴더에 대한 처리기를 추가, 정적 파일에 대한 폴더를 사용해야하는 경우 :

<link href="/static/styles.css" rel="stylesheet" type="text/css" /> 
:

handlers: 
- url: /static 
    static_dir: static 

그리고이로 연결

자세한 내용은 https://developers.google.com/appengine/docs/python/gettingstartedpython27/staticfiles

관련 문제