使用Google AppEngine托管静态网站时出现404错误

时间:2018-07-18 13:15:47

标签: html google-app-engine google-cloud-platform

我正在尝试按照this博客中的所有步骤进行操作,以使用Google App引擎托管静态网站。 app.yaml文件如下所示:

runtime: python27
api_version: 1
threadsafe: true

handlers:
- url: /
static_files: website/index.html
upload: website/index.html

- url: /
static_dir: website

说我的项目ID是abcd-123。当我转到abcd-123.appspot.com时,出现404错误。 (此外,我正在使用与托管相同的文件夹)。请指出我做错了什么?

1 个答案:

答案 0 :(得分:2)

请确保您有一个website文件夹,并且在其中有index.html文件以及一个自己创建的app.yaml文件。另外,请确保在运行set project命令时提及项目ID,而不要提及项目名称!