我部署在谷歌应用程序引擎的角度6应用程序。 该app.yaml的配置看起来像这样:
runtime: python27
api_version: 1
threadsafe: true
skip_files:
- (?!^dist)
handlers:
- url: /
static_files: dist/index.html
upload: dist/index.html
- url: /(.*)
static_files: dist/\1
upload: dist/(.*)
一切工作正常,直到我重新加载页面的路线上或路线(如myapp.com/route)直接访问网站,我可以访问一切。 这样做,我得到一个The requested URL /route was not found on this server
错误消息。