GAE PHP App仅显示索引/主页

时间:2013-10-09 19:14:29

标签: php google-app-engine app.yaml

在主页index.htm页面上有一个指向signUp.htm页面的链接,该链接无效。

我认为这是一个YAML问题:

handlers:
- url: /images
  static_dir: images

- url: /.*
  script: index.htm

1 个答案:

答案 0 :(得分:1)

为html文件添加静态处理程序。把它放在你所有的处理程序之前。*

- url: /(.*\.(htm$|html$))
  static_files: \1
  upload: (.*\.(htm$|html$))