我正在尝试按照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错误。 (此外,我正在使用与托管相同的文件夹)。请指出我做错了什么?
答案 0 :(得分:2)
请确保您有一个website
文件夹,并且在其中有index.html
文件以及一个自己创建的app.yaml
文件。另外,请确保在运行set project
命令时提及项目ID,而不要提及项目名称!