Last active
January 2, 2016 10:59
-
-
Save cnevinc/8294035 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
application: helloworld | |
version: 1 | |
runtime: php | |
api_version: 1 | |
handlers: | |
- url: /stylesheets #當GAE收到http request帶有"stylesheets"字樣的URL時 | |
static_dir: stylesheets #,會去"stylesheets"這個資料夾找相對應的資源顯示給使用者 | |
- url: /.* #除此之外,其他的request | |
script: helloworld.php #都會由helloworld.php來處理 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment