google 云平台主机网站,但仅适用于 index.html

google cloud platform host website, but only working for index.html

我想使用 google 云平台来托管我的网站(有些文件只有 html,有些文件只有 php)。但它只显示没有任何图像的 index.html 页面,并且所有 link 都不起作用。我认为我的 app.yaml 文件不正确。

案例背景:

这里有 app.yaml 文件:

runtime: php55
api_version: 1

handlers:

- url: /.*
  script: index.html

您需要将 static_dir or static_files elements 添加到 app.yaml 中的处理程序。

使用static_dir,例如:

runtime: php55
api_version: 1

handlers:

- url: /
  script: index.html
- url: /images
  static_dir: images