我想要一個以「/」結尾的任何網址的請求,例如http://website.com/some_dir/以接收該目錄內的index.html文件...在我的示例中,它應該收到http://website.com/some_dir/index.html。谷歌應用程序引擎yaml index.html
我有它與GAE啓動/本地服務器上本地工作的......但是當我部署它,並通過website.appspot.com訪問它失敗... 我得到的錯誤:
Error: Not Found
The requested URL /some_dir/ was not found on this server.
這是我在我的YAML:
- url:/
static_files: staticLocation/index.html
upload: staticLocation/index.html
- url: (.+)/
static_files: staticLocation/\1/index.html
upload: staticLocation
- url:/
static_dir: staticLocation
我很好奇,如何/爲什麼它本地工作很大,但不是Appspot上... 的想法,以及如何解決我的問題呢?