我想要对任何以“/”结尾的 url 的获取请求,例如http://website.com/some_dir/以接收该目录中的 index.html 文件......在我的示例中,它应该接收http://website.com /some_dir/index.html 。
我让它在本地与 GAE 启动器/本地服务器一起工作......但是当我部署它并通过 website.appspot.com 访问它时它失败了......我收到错误:
错误:未找到
在此服务器上找不到请求的 URL /some_dir/。
这就是我的 yaml 中的内容:
- url: /
static_files: staticLocation/index.html
upload: staticLocation/index.html
- url: (.+)/
static_files: staticLocation/\1/index.html
upload: staticLocation
- url: /
static_dir: staticLocation
我很好奇它如何/为什么在本地工作得很好,但在 apppot 上却没有......想法,以及如何解决我的问题?